-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
26 lines (22 loc) · 790 Bytes
/
signup.php
File metadata and controls
26 lines (22 loc) · 790 Bytes
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
<?php
include("header.php");
?>
<main>
<div class = "wrapCard">
<div class = "card">
<h2 class = "cardTitle cardTitleH2">Signup</h2>
<form class = "logsign">
<label class = "label">Display Name</label>
<input type = "text" class = "text" name = "name" placeholder = "Display Name" required>
<label class = "label">Email Address</label>
<input type = "email" class = "text" name = "email" placeholder = "you@yours.com" required>
<label class = "label">Password</label>
<input type = "password" class = "text" name = "password" placeholder = "Password" required>
<input type = "submit" class = "btn" name = "submitSignup" value = "Signup">
</form>
</div>
</div>
</main>
<?php
include("footer.php");
?>