-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (71 loc) · 3.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Login | Front-End</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<div class="container login-center panel-opacity">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-success panel-shadow">
<div class="panel-heading text-center">
<strong>Login to your Account</strong>
</div>
<div class="panel-body">
<form class="form-horizontal">
<!-- EMAIL -->
<div class="form-group">
<div class=" col-sm-10 col-sm-offset-1 input-group">
<div class="input-group-addon">
<i class="glyphicon glyphicon-envelope"></i>
</div>
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<!-- PASSWORD -->
<div class="form-group">
<div class=" col-sm-10 col-sm-offset-1 input-group">
<div class="input-group-addon">
<i class="glyphicon glyphicon-lock"></i>
</div>
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div><!--form-group-->
<!-- REMEMBER ME -->
<div class="form-group">
<div class="col-sm-offset-1">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div><!--form-group-->
<!-- LOGIN BUTTON -->
<div class="form-group">
<div class="col-sm-offset-1">
<button type="submit" class="btn btn-success col-sm-11"><strong>LOGIN</strong></button>
</div>
</div><!--form-group-->
</form>
</div><!--panel-body-->
<div class="panel-footer">
<div class="text-center">
Don't have account? <a href="register.html"><strong>Register!</strong></a>
</div>
</div><!--panel-footer-->
</div><!--panel-->
</div><!--col-md-4-->
</div><!--row-->
</div><!--container-->
<!-- JQUERY -->
<script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
<!-- BOOTSTRAP -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>