generated from GenerateNU/GenerateHWBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 940 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
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Login or Create User">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Login or Create User</title>
</head>
<body>
<h2>Login or Create User</h2>
<!-- Login Form -->
<form id="loginForm" method="POST" action="userNameCheck.php">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<button type="submit">Login</button>
</form>
<!-- Create User Form -->
<form id="createUserForm" method="POST" action="createUser.php">
<label for="newUsername">New Username:</label>
<input type="text" id="newUsername" name="newUsername" required>
<button type="submit">Create User</button>
</form>
</body>
</html>