-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.48 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.48 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GUDLFT Registration</title>
</head>
<body>
<h1>Welcome to the GUDLFT Registration Portal!</h1>
Please enter your secretary email to continue:
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class="flashes" style="color: red;">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
<form action="showSummary" method="post">
<label for="email">Email:</label>
<input type="email" name="email" id=""/>
<button type="submit">Enter</button>
</form>
<h2>Clubs Points Summary</h2>
<table style="border-collapse: collapse; width: 30%; background-color: #f5f5f5; color: #333;">
<thead>
<tr style="background-color: #e0e0e0;">
<th style="border: 1px solid #ccc; padding: 6px;">Club</th>
<th style="border: 1px solid #ccc; padding: 6px;">Points</th>
</tr>
</thead>
<tbody>
{% for club in clubs %}
<tr style="text-align: center;">
<td style="border: 1px solid #ccc; padding: 6px;">{{ club['name'] }}</td>
<td style="border: 1px solid #ccc; padding: 6px;">{{ club['points'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>