-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeptstaff_signup.html
73 lines (70 loc) · 2.84 KB
/
deptstaff_signup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Department staff signup page</title>
<meta name="keywords" content="TA Applicants TA committee members Administrators Staff">
<meta name="description" content="TAANVAS TA System">
<meta name="author" content="Group 4 Members">
<meta name="date" content="2024-02-14"><!--Latest Publishing Date -->
<meta property="og:title" content="TAANVAS TA System">
<meta property="og:image" content="">
<meta property="og:description" content="TAANVAS - System for TAs at FAU">
<meta property="og:url" content="">
<!-- This is the minified production version of parse js -->
<script type="text/javascript" src="https://npmcdn.com/parse/dist/parse.min.js"></script>
<script src="./js/deptstaff_signup.js" defer></script>
<link rel="stylesheet" href="./src/input.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-grey-100">
<div class="bg-blue-950">
<div class="flex justify-center items-center h-screen">
<div class="max-w-md w-full bg-white rounded-lg shadow-lg p-8">
<h2 class="text-2xl font-bold text-grey-800 mb-8">Sign Up</h2>
<form>
<div class="mb-6">
<label class="block font-semibold text-gray-700 mb-2" for="username">
Email
</label>
<input class="w-full px-3 py-2 border border-gray-400 rounded-lg focus:border-red-600"
id="username" type="username" placeholder="Email" />
<div class="mb-6">
<label class="block font-semibold text-gray-700 mb-2" for="Phone">
Phone
</label>
<input class="w-full px-3 py-2 border border-gray-400 rounded-lg focus:border-red-600"
id="Phone" type="Phone" placeholder="Phone" />
</div>
<div class="mb-6">
<label class="block font-semibold text-gray-700 mb-2" for="Department">
Department
</label>
<input class="w-full px-3 py-2 border border-gray-400 rounded-lg focus:border-red-600"
id="Department" type="Department" placeholder="Department" />
</div>
<div class="mb-6">
<label class="block font-semibold text-gray-700 mb-2" for="password">
Password
</label>
<input class="w-full px-3 py-2 border border-gray-400 rounded-lg focus:border-red-600"
id="password" type="password" placeholder="Password" />
</div>
<div class="mb-6">
<button type="button"
class="w-full bg-red-600 text-white font-semibold py-2 rounded-lg hover:bg-red-600 transition-colors duration-300"
id="signUp">
Sign Up
</button>
</div>
<h2 id="errorOutput" style="color:red;"></h2>
</div>
</form>
<a href="deptstaff_login.html">Already have an account? Login here</a>
</div>
</div>
</div>
</body>
</html>