-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
26 lines (24 loc) · 852 Bytes
/
signup.php
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>
<head>
<link rel="stylesheet" type="text/css" href="/StudentsLifeLine/style.css">
</head>
<body>
<section class="main-container">
<div class="main-wrapper">
<h2>Signup</h2>
<form class="input-form" action="includes/signup.inc.php" method="POST">
<input type="text" name="first" placeholder="Firstname" required>
<input type="text" name="last" placeholder="Lastname" required>
<input type="email" name="email" placeholder="E-mail" required>
<input type="text" name="uid" placeholder="Username" required>
<input type="password" name="pwd" placeholder="Password" required>
<button type="submit" name="submit">Sign up</button>
</form>
<form class="input-form" action="index.php" method="POST">
<button type="submit" name="goHome">Go to Home Page!</button>
</form>
</div>
</section>
</body>
</html>