This repository was archived by the owner on Jul 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign-up.php
More file actions
35 lines (35 loc) · 1.42 KB
/
Copy pathsign-up.php
File metadata and controls
35 lines (35 loc) · 1.42 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
<?php include 'partials/header.php'; ?>
<div>
<h1>Sign up</h1>
<form action="../controllers/sign-up.php" method="post">
<div>
<div>
<label for="first_name">First name</label>
<input type="text" id="first_name" name="first_name" placeholder="John" required>
</div>
<div>
<label for="last_name">Last name</label>
<input type="text" id="last_name" name="last_name" placeholder="Doe" required>
</div>
</div>
<div>
<!-- TODO: Add country prefix ? auto spacing ? -->
<label for="phone">Phone number</label>
<input type="number" id="phone" name="phone" required>
</div>
<div>
<label for="email">Email address</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
</div>
<div>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Create a password" required>
</div>
<div>
<label for="confirm_password">Confirm password</label>
<input type="password" id="confirm_password" name="confirm_password" placeholder="Repeat your password" required>
</div>
<button type="submit">Create account</button>
</form>
</div>
<?php include 'partials/footer.php'; ?>