-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
152 lines (92 loc) · 3.91 KB
/
first.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bootbusiness | Short description about company">
<meta name="author" content="Your name">
<title>Patient Consultaion Center </title>
<script src="http://localhost/ui/jquery/jquery.js"></script>
<!-- Bootstrap -->
<link href="http://localhost/ui/css/bootstrap.min.css" rel="stylesheet">
<link href="http://localhost/ui/css/cus-icons.css" rel="stylesheet">
<!-- Bootstrap responsive -->
<link href="http://localhost/ui/css/bootstrap-responsive.min.css" rel="stylesheet">
<!-- Font awesome - iconic font with IE7 support -->
<link href="http://localhost/ui/css/font-awesome.css" rel="stylesheet">
<link href="http://localhost/ui/css/font-awesome-ie7.css" rel="stylesheet">
<!-- Bootbusiness theme -->
<link href="http://localhost/ui/css/boot-business.css" rel="stylesheet">
<link href="http://localhost/ui/assets/css/datepicker.css" rel="stylesheet" media="screen">
<script type="text/javascript" src="http://localhost/ui/assets/js/bootstrap-datepicker.js"></script>
<script>
$(document).ready(
function()
{
$(document).ready(
function()
{
$("#ad").addClass("active");
});
});
</script>
</head>
<body>
<header>
<!-- Start: Navigation wrapper -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="http://localhost/ui/index.php" class="brand brand-bootbus"><i class="icon-home"></i>Patient Consultation Center</a>
<!-- Below button used for responsive navigation -->
<!-- Start: Primary navigation -->
<ul class="nav pull-right">
</ul>
</div>
</div>
</div>
<!-- End: Navigation wrapper -->
</header>
<!-- Start: MAIN CONTENT -->
<div class="content" style="min-height: 450px">
<div class="container">
<div class="page-header">
<h1>Admin panel</h1>
</div>
<div class="row">
<div class="span6 offset3">
<h4 class="widget-header"><i class="icon-lock"></i>Login</h4>
<div class="widget-body">
<div class="center-align">
<form class="form-horizontal form-signin-signup" method="post" action="http://localhost/ui/index.php/admin_auth/login">
<input type="text" name="username" placeholder="username/Email">
<input type="password" name="password" placeholder="Password"><br/>
<input type="submit" value="Login" class="btn btn-primary btn-large">
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End: MAIN CONTENT -->
<!-- Start: FOOTER -->
<footer>
<div class="container">
<a href="http://localhost/ui/index.php/admin_auth/login">Admin Panel</a>
</div>
<div class="container">
<p>
© 2013 Patient Consultation Center. All Rights Reserved.
</p>
</div>
</footer>
<!-- End: FOOTER -->
<script type="text/javascript" src="http://localhost/ui/js/jquery-ui.js"></script>
<script type="text/javascript" src="http://localhost/ui/js/jquery.min.js"></script>
<script type="text/javascript" src="http://localhost/ui/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://localhost/ui/js/boot-business.js"></script>
<script type="text/javascript" src="http://localhost/ui/js/twitter-bootstrap-hover-dropdown.js"></script>
<script type="text/javascript" src="http://localhost/ui/js/twitter-bootstrap-hover-dropdown.min.js"></script>
</body>
</html>