-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform2.html
65 lines (60 loc) · 2.55 KB
/
form2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Landing Page" content="html, css, bootstrap">
<meta name="Franklin" content="Rudigo's Official Website">
<title>student form</title>
<!-- bootstrap css -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<!-- font-awesome-->
<link rel="stylesheet" type="text/css" href="font-awesome-4.7.0/font-awesome-4.7.0/css/font-awesome.min.css">
<!-- google-fonts-api-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Questrial">
<!-- custom css -->
<link rel="stylesheet" type="text/css" href="CSS/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-5 col-xs-push-4">
<h3 class="text-center">Admin Login</h3>
<hr>
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="email" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Email" required>
</div>
</div>
<div class="form-group">
<label for="password" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="password" placeholder="Password" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-success" id="login">Login</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!--jquery-->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!--Bootstrap.js-->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>