-
Notifications
You must be signed in to change notification settings - Fork 0
/
Confirmation.aspx
81 lines (57 loc) · 2.08 KB
/
Confirmation.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
<%@ Page Language="C#" %>
<!DOCTYPE html>
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="css/bootstrap.css" rel="stylesheet" />
<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 >
<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"].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>
<div class="container" >
<div class="hero-unit">
<h1>Confirmation</h1>
<p>Your Record has been added successfully. You can continue your work.</p>
</div>
</div>
<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>
</body>
</html>