-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="stylesheet.css">
<script src="JS_file.js"></script>
</head>
<body>
<div class="bg-image"></div>
<div class="login-box">
<h2>Login</h2>
<form id="login-form">
<input type="text" id="full name" placeholder="Full Name" required>
<input type="password" id="password" placeholder="Password" required>
<div class="dropdown-container">
<label for = "Roles"> List of Roles: </label>
<select name = "Role" id = "Roles">
<option value = "Participant">Participant</option>
<option value = "Organizer">Organizer</option>
<option value = "Volunteer">Volunteer</option>
</select>
</div>
<!--<button type="submit" href="Login.html"> Login </button> -->
<button type="submit" onclick="window.location.href = 'Login.html' ">Login</button>
</form>
<p id="message"></p>
<a href="options.php">Register</a>
</div>
</body>
</html>