-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_account.php
83 lines (71 loc) · 1.76 KB
/
create_account.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
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
<!-- Nicholas MacFarland
03/04/20
CSIS 474-B01
Description:
This is the "Log In" page of the site that lets
the customer create an account if they don't
have an account. If they do have an account,
they can sign in to their already existing account.
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="TennisHubb.css">
<link rel="stylesheet" type="text/css" href="Top_Menu_Navigation.css">
<div class="title">
<title>
TENNIS HUBB SITE
</title>
LOG IN TO ENTER SITE
</div>
</head>
<hr>
<div class="topnav">
<a href="#index.php">Home</a>
<a href="#Shop.php">Shop</a>
<a href="#Contact.php">Contact</a>
<a href="#Shopping_Cart.php">Shopping Cart</a>
<a class="active" href="#LogIn">Log In</a>
</div>
<hr>
<body>
<div class="CreateLogInUser">
<form action="LogIn.php" method="post" class="form--inline">
<p>
<h3>
Create Account
</h3>
Username:
<br>
<input name="username" type="text" required=""/>
<br>
<br>
First Name:
<br>
<input name="fname" type="text" required=""/>
<br>
<br>
Last Name:
<br>
<input name="lname" type="text" required=""/>
<br>
<br>
Password:
<br>
<input name="password" type="password" required=""/>
<br>
<br>
Email Address:
<br>
<input name="email" type="email" required=""/>
<br>
<br>
<input name="submit_new_account" type="submit" value="submit" />
</p>
</form>
</div>
</body>
<?php
include "footer.php";
?>
</html>