-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
106 lines (90 loc) · 4.62 KB
/
admin.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Page</title>
<link rel="stylesheet" type="text/css" href="/static/styles/admin.css">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div>
<div class="container mt-5" id="admin">
<h1 class="text-center mb-5" id=>Admin Page</h1>
<!-- View Results Button Section -->
<div class="text-center mb-4" id="viewresults">
<a href="{{ url_for('admin_results') }}" class="btn btn-info btn-lg">View Voting Results</a>
</div>
<!-- Add Voter Form Section -->
<div class="card mb-5" id="addvoter">
<div class="card-header" >
<h2 class="text-center">Add Voter</h2>
</div>
<div class="card-body" id="add-voter-body">
<form method="POST" enctype="multipart/form-data" class="row g-3" id="add-voter-form">
<input type="hidden" name="voter" value="1">
<div class="col-md-6" id="votername">
<label for="voter_name" class="form-label">Name:</label>
<input type="text" id="voter_name" name="voter_name" class="form-control" required>
</div>
<div class="col-md-6" id="voter-id">
<label for="voter_id" class="form-label">Voter ID:</label>
<input type="text" id="voter_id" name="voter_id" class="form-control" required>
</div>
<div class="col-md-6" id="voter-address">
<label for="voter_address" class="form-label">Address:</label>
<input type="text" id="voter_address" name="voter_address" class="form-control" required>
</div>
<div class="col-md-6" id="voter-photo">
<label for="voter_photo" class="form-label">Photo:</label>
<input type="file" id="voter_photo" name="voter_photo" class="form-control" accept="image/*" required>
</div>
<div class="col-12 text-center" id="addvoterbtn">
<button type="submit" class="btn btn-primary btn-lg">Add Voter</button>
</div>
</form>
</div>
</div>
<!-- Add Candidate Form Section -->
<div class="card mb-5" id="addcand">
<div class="card-header">
<h2 class="text-center">Add Candidate</h2>
</div>
<div class="card-body" id="add-candidate-body">
<form method="POST" enctype="multipart/form-data" class="row g-3" id="add-candidate-form">
<input type="hidden" name="candidate" value="1">
<div class="col-md-6" id="candidate-leader-name">
<label for="leader_name" class="form-label">Leader Name:</label>
<input type="text" id="leader_name" name="leader_name" class="form-control" required>
</div>
<div class="col-md-6" id="candidate-party-name">
<label for="party_name" class="form-label">Party Name:</label>
<input type="text" id="party_name" name="party_name" class="form-control" required>
</div>
<div class="col-md-6" id="candidate-logo">
<label for="logo" class="form-label">Logo:</label>
<input type="file" id="logo" name="logo" class="form-control" accept="image/*" required>
</div>
<div class="col-12 text-center" id="add-candidate-button">
<button type="submit" class="btn btn-primary btn-lg">Add Candidate</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Bootstrap 5 JS (for optional interactive components) -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Flash messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<ul>
{% for category, message in messages %}
<li class="{{ category }}">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</body>
</html>