-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.php
More file actions
99 lines (78 loc) · 2.13 KB
/
Copy pathSignUp.php
File metadata and controls
99 lines (78 loc) · 2.13 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
<?php
include_once("./functions.php");
include("./views/partials/navbar.php");
include('./views/partials/head.php');
$heading = "Register or Log In";
$bannerMessage = "If you haven't already, join our list of elite customers who have been consistently getting the best deals in town!";
// $marqueeDuration = 16;
include('./views/partials/banner.php');
?>
<main class="auth-page">
<div class="auth-container">
<section class="auth-section">
<h2 class="auth-title">Login</h2>
<form method="POST" action="./AddNewCustomer.php" class="auth-form">
<div class="auth-field">
<label for="login-username">Username</label>
<input type="text"
id="login-username"
name="UserName"
required>
</div>
<button type="submit"
name="Login"
class="auth-btn">
Login
</button>
</form>
</section>
<div class="auth-divider">
<span>OR</span>
</div>
<section class="auth-section">
<h2 class="auth-title">Create a new account</h2>
<form method="POST" action="./AddNewCustomer.php" class="auth-form">
<div class="auth-field">
<label for="signup-username">Username</label>
<input type="text"
id="signup-username"
name="UserName"
required>
</div>
<div class="auth-field">
<label for="signup-first">First Name</label>
<input type="text"
id="signup-first"
name="FirstName"
required>
</div>
<div class="auth-field">
<label for="signup-last">Last Name</label>
<input type="text"
id="signup-last"
name="LastName"
required>
</div>
<div class="auth-field">
<label for="signup-address">Address</label>
<input type="text"
id="signup-address"
name="Address"
required>
</div>
<div class="auth-field">
<label for="signup-city">City</label>
<input type="text"
id="signup-city"
name="City"
required>
</div>
<button type="submit"
name="Signup"
class="auth-btn">
Signup
</button>
</form>
</section>
</div>
</main>