forked from COP4331-Group15/COP4331-Contact-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
43 lines (43 loc) · 1.67 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Signup</title>
<link rel="stylesheet" href="">
<style>
.wrapper{ width: 350px; padding: 20px; }
</style>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<div id='topnavid' class='topnav'>
<a href='index.html'><h1 style='display: inline;'>Contact-Project</h1></a><a href='/signup.html'>New User</a><a href='/login.html'>Existing User</a><a href='/delete.html'>Delete User</a>
</div>
<div class="wrapper" style="padding:1px; background-color: Lavender; width:100%;">
<h2>Sign up</h2>
<form action="/LAMPAPI/sign_up.php" method="post">
<div class="form-group">
<label>First name</label>
<input type="text" name="firstname" class="form-control">
</div>
<div class="form-group">
<label>Last name</label>
<input type="text" name="lastname" class="form-control">
</div>
<div class="form-group">
<label>Username</label>
<input type="password" name="login" class="form-control">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" class="form-control">
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary" value="Submit">
<input type="reset" class="btn btn-secondary ml-2" value="Reset">
</div>
<p>Already have an account? <a href="/login.html">Login here</a>.</p>
</form>
</div>
</body>
</html>