-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 1014 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<link rel="shortcut icon" href="src\images\H.C.E.T_Syndicate_Icon.ico" type="image/x-icon">
<link rel="stylesheet" href="src/css/register.css">
</head>
<body>
<div class="register">
<form id="registerForm">
<h1>Agent Registration Form</h1>
<label for="username" class="formText"><b>Username</b></label>
<input type="text" id="username" placeholder="Enter Username" required>
<label for="password" class="formText"><b>Password</b></label>
<input type="password" id="password" placeholder="Enter Password" required>
<button type="submit">Register</button>
<h2>Already have an account? <a href="src/login.html" id="loginLink">Login</a></h2>
</form>
</div>
<script src="src/js/script.js"></script>
</body>
</html>