-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
71 lines (58 loc) · 2.62 KB
/
login.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
<!DOCTYPE html>
<html>
<head>
<title>Copy Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<!-- The Modal -->
<div class="modal" id="loginModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header border-0">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body text center">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 class="modal-title text-center">Login</h4>
<div class="btn-group d-flex my-3">
<button type="button" class="btn btn-outline-secondary">Login with Facebook</button>
<button type="button" class="btn btn-outline-secondary">Login with Twitter</button>
</div>
<div class="login-form">
<form class="form">
<div class="form-group">
<label for="loginEmail">Email</label>
<input type="email" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="loginEmail" aria-describedby="emailHelp" placeholder="Email">
</div>
<div class="form-group">
<label for="loginPassword">Password</label>
<input type="password" class="form-control border-top-0 border-left-0 border-right-0 border-bottom" id="loginPassword" placeholder="Password">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="modal-footer justify-content-center border-0">
<button type="submit" class="btn neo-primary-btn abit-white abit-bg-purple" data-dismiss="modal">Submit</button>
<div class="col-md-12 text-center mt-2">
<small>Do you have an account? <a href="#" class="toggleRegisterLoginPopup" login="disable">Signup</a></small>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="js/detects.js"></script>
<script src="js/another-file.js"></script>
<script src="js/main.polyfills.js"></script>
</body>
</html>