-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.aspx
191 lines (149 loc) · 4.62 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="css/bootstrap.css" rel="stylesheet" />
<style>
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
margin-bottom: 20px;
}
.carousel .container {
position: relative;
z-index: 9;
}
.carousel-control {
height: 80px;
margin-top: 0;
font-size: 120px;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
background-color: transparent;
border: 0;
z-index: 10;
}
.carousel .item {
height: 300px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 300px;
}
.carousel-caption {
background-color: transparent;
position: static;
max-width: 250px;
padding: 0 20px;
margin-top: 200px;
}
.carousel-caption h1,
.carousel-caption .lead {
margin: 0;
line-height: 1.25;
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn {
margin-top: 10px;
}
</style>
<title>Welcome to Vikas Kutch DPO</title>
</head>
<body>
<div class="page-header">
<h1 class="text-error text-center"><b>Village Index For Kutch Approve Scheme</b></h1>
</div>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Vikas Kutch DPO</a>
<ul class="nav">
<li class="active">
<a href="Default.aspx">Home</a>
</li>
<li ><a href="AddTask.aspx">Add Task</a></li>
<li ><a href="TaskList.aspx">Task List</a></li>
<%
if(Session["User"] != null)
{
if (Session["User"].ToString() == Common.stradmin)
{ %>
<li><a href="AddAdhikari.aspx">Add Implementation Officer</a></li>
<li><a href="AdhikariList.aspx">Implementation Officer List</a></li>
<li><a href="TaskListByStatus.aspx">Reports</a></li>
<%}
} %>
<li><a href="ChangePassword.aspx">Change Password</a></li>
<% if (Session["User"] == null)
{ %>
<li><a href="Login.aspx">Login</a></li>
<%}
else
{ %>
<li><a href="Logout.aspx">LogOut</a></li>
<%} %>
</ul>
</div>
</div>
<br />
<div class="container" >
<div class="row">
<div class="span2"></div>
<div class="span8">
<div class="bs-docs-example">
<div id="myCarousel" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" ></li>
<li data-target="#myCarousel" data-slide-to="1" class="active"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<img src="img/01.jpg" />
</div>
<div class="item">
<img src="img/02.jpg" />
</div>
<div class="item">
<img src="img/03.jpg" />
</div>
<div class="item">
<img src="img/04.gif" />
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div></div>
</div>
<div class="span2"></div>
</div>
</div>
<br /><br />
<ul class="breadcrumb">
<li class="active">
<a href="Default.aspx">Home</a> -
</li>
<li><a href="AddTask.aspx">Add Task</a> - </li>
<li><a href="TaskList.aspx">Task List</a> - </li>
<li><a href="ChangePassword.aspx">Change Password</a></li>
</ul>
<h6 class="text-info text-center"> Designed and Developed by <a href="www.ailestech.com">Ailes Technology</a></h6>
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<script>
!function ($) {
$(function () {
// carousel demo
$('#myCarousel').carousel()
})
}(window.jQuery)
</script>
</body>
</html>