-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 973 Bytes
/
index.html
File metadata and controls
35 lines (30 loc) · 973 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Licence</title>
</head>
<body>
{% for message in messages %}
<div class="slert alert-{{message.tags}} alert-dismissible fade show" role="alert">
<strong>Message:</strong> {{message}}
<button type="button" class="close" data-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
<H3>Welcome to Government e-Licence Portal</H3>
{% if user.is_authenticated %}
<h3>Hello {{fname}}</h3>
<h4> You Have sucessfully Logged in</h4>
<button type="submit"><a href="/register">Register</button>
<br>
<br>
{% else %}
<button type="submit"><a href="/home">Log In</button>
<button type="submit"><a href="/login">Log In</button>
<br>
<br>
<button type="submit"><a href="/logout">Log Out</button>
{% endif % }
</body>
</html>