forked from SanjinDedic/WebQuiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Login Page</title>
<link rel="stylesheet" href="css/front.css">
<script src="js/login.js"></script>
</head>
<body>
<div class="container">
<h1 class="trivia-theme">Trivia Team Login</h1>
<form class="login-form">
<label for="team-name">Team Name:</label>
<input type="text" id="team-name" name="team-name" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
<br><br>
<button class="signup" onclick="window.location.href='signup.html'">Sign Up</button>
</form>
</div>
</body>
</html>