-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>HTML Login Page with Bootstrap Example</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css'>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Muli'><link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="pt-5">
<div class="container">
<div class="row">
<div class="col-md-5 mx-auto">
<div class="card card-body">
<form onsubmit="return login()" id="submitForm" method="post" data-parsley-validate="" data-parsley-errors-messages-disabled="true" novalidate="" _lpchecked="1"><input type="hidden" name="_csrf" value="7635eb83-1f95-4b32-8788-abec2724a9a4">
<div class="form-group required">
<lSabel for="username">Username</lSabel>
<input type="text" class="form-control text-lowercase" id="username" required="" name="username" value="">
</div>
<div class="form-group required">
<label class="d-flex flex-row align-items-center" for="password">Password
<a class="ml-auto border-link small-xl" href="/forget-password">Forget?</a></label>
<input type="password" class="form-control" required="" id="password" name="password" value="">
</div>
<div class="form-group mt-4 mb-4">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="remember-me" name="remember-me" data-parsley-multiple="remember-me">
<label class="custom-control-label" for="remember-me">Remember me?</label>
</div>
</div>
<div class="form-group pt-1">
<button class="btn btn-primary btn-block" type="submit">Log In</button>
</div>
</form>
<p class="small-xl pt-3 text-center">
<span class="text-muted">Not a member?</span>
<a href="/register.html">Sign up</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- partial -->
<script src="/js/vendors/jquery/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="/js/models/login.model.js"></script>
</body>
</html>