-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignUp.php
More file actions
116 lines (103 loc) · 3.1 KB
/
signUp.php
File metadata and controls
116 lines (103 loc) · 3.1 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Role Selection</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form-container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 500px;
box-sizing: border-box;
}
h2 {
text-align: center;
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
font-weight: bold;
color: #333;
display: block;
margin-bottom: 5px;
}
.form-group select {
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 5px;
width: 100%;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 15px 32px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #45a049;
}
@media screen and (max-width: 600px) {
.form-container {
width: 100%;
margin: 0 10px;
}
}
</style>
</head>
<body>
<div class="form-container">
<h2>Signup Role Selection</h2>
<form id="roleForm">
<div class="form-group">
<label for="role">Select Role:</label>
<select name="role" id="role" required>
<option value="">Select Role</option>
<option value="3">Student</option>
<option value="2">Professor</option>
<option value="1">Admin</option>
</select>
</div>
<button type="submit">Proceed</button>
</form>
<p class="signup-link">Already have an account? <a href="login.php">Login here</a></p>
</div>
<script>
const roleForm = document.getElementById('roleForm');
const roleSelect = document.getElementById('role');
roleForm.addEventListener('submit', (e) => {
e.preventDefault();
const selectedRole = roleSelect.value;
if (selectedRole === "3") {
window.location.href = "signUpStudent.php";
} else if (selectedRole === "2") {
window.location.href = "signUpProf.php";
} else if (selectedRole === "1") {
window.location.href = "signUpAdmin.php";
} else {
alert("Please select a valid role.");
}
});
</script>
</body>
</html>