-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (58 loc) · 2.96 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<!-- meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon icon -->
<link rel="icon" type="image/png" href="images/2.jpg">
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- bootstrap validator css -->
<link rel="stylesheet" type="text/css" href="css/bootstrapValidator.css">
<!-- font awesome icons -->
<link rel="stylesheet" type="text/css" href="css/font-awesome/css/font-awesome.min.css">
<!-- custom css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Hello world</title>
</head>
<body>
<!-- bootsrap container for the login form -->
<div class="container-fluid">
<!--bootsrap centered row -->
<div class="row justify-content-center">
<!-- bootsrap column of width 6 -->
<div class="col-lg-5">
<div class="card"> <!-- check style.css in the css folder to see i have styled this class card (.card) with a margin top -->
<!-- center an image at the center of the login form -->
<center><img class="img" src="images/4.jpg"></center>
<form method="POST" class="login-form"><!-- check style.css in the css folder to see i have styled this class .login-form-->
<div class="form-group">
<!-- when you give a div the class form-group then the input inside it the class form-control, it styles it for you :) -->
<label for="firstname">Email</label>
<input type="email" class="form-control" placeholder="[email protected]" id="email" name="email">
</div>
<div class="form-group">
<!-- when you give a div the class form-group then the input inside it the class form-control, it styles it for you :) -->
<label for="firstname">Password</label>
<input type="password" class="form-control" name="password" id="password">
</div>
<!-- add a div within a button at the center -->
<div class="text-center">
<button type="submit" name="btn_login" class="btn btn-primary btn-md">Sign in</button>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- javascript -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/popper.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrapValidator.js"></script>
<script type="text/javascript" src="js/script.js"></script>