-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup_student.html
More file actions
62 lines (48 loc) · 1.9 KB
/
signup_student.html
File metadata and controls
62 lines (48 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tuition Fee Waiver</title>
<link rel="stylesheet" href="signup_student_.css">
</head>
<body>
<header>
<div class="header-container">
<h1>TEACHWAVE -</h1>
<h2>TUITION POINT</h2>
</div>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="#">Contact</a></li>
<li><a href="loginpage_student.html">Login</a></li>
</ul>
</nav>
<main>
<div class="full">
<div class="login-container">
<h2>SIGN UP</h2>
<form action="http://localhost/DBMSproject/student_signup_backend.php" method="POST" id="signupForm">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="number">Contact:</label>
<input type="text" id="number" name="number" required>
<label for="mail">Email:</label>
<input type="email" id="mail" name="mail" required>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="confirm_password" name="confirm_password" required>
<button type="submit">Register</button>
</form>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>