-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrash.html
More file actions
71 lines (62 loc) · 3.2 KB
/
trash.html
File metadata and controls
71 lines (62 loc) · 3.2 KB
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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<title>Attendance System</title>
<link rel="stylesheet" type="text/css" href="../static/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="../static/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../static/css/style.css">
<!--[if lt IE 9]>
<script src="../static/js/html5shiv.min.js"></script>
<script src="../static/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="main-wrapper account-wrapper">
<div class="account-page">
<div class="account-center">
<div class="account-box">
<!-- <form action="index.html" class="form-signin"> -->
<form action="{{ url_for('login') }}" method="POST" class="form-signin">
<div class="account-logo">
<a href="{{ url_for('index') }}"><img src="../static/img/KIt logo.png" alt=""></a>
</div>
<!-- Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="alert alert-dismissible fade show" role="alert">
{% for category, message in messages %}
<div class="alert-{{ category }}">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<div class="form-group">
<label>Username or Email</label>
<input type="text" name="username" autofocus="" class="form-control">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" class="form-control">
</div>
<div class="form-group text-right">
<a href="{{ url_for('forgot_password')}}">Forgot your password?</a>
</div>
<div class="form-group text-center">
<button type="submit" class="btn btn-primary account-btn">Login</button>
</div>
<div class="text-center register-link">
Don’t have an account? <a href="{{ url_for('register') }}">Register Now</a>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="../static/js/jquery-3.2.1.min.js"></script>
<script src="../static/js/popper.min.js"></script>
<script src="../static/js/bootstrap.min.js"></script>
<script src="../static/js/app.js"></script>
</body>
</html>