-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.php
More file actions
27 lines (23 loc) · 788 Bytes
/
signup.php
File metadata and controls
27 lines (23 loc) · 788 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
27
<?php
include_once 'header.php';
?>
<section class="main-container">
<div class="main-wrapper">
<br/><br/><br/>
<h1>Signup</h1>
<form class="signup-form" action="includes/signup.inc.php" method="POST">
<input type="text" name="first" placeholder="Firstname">
<input type="text" name="last" placeholder="Lastname">
<input type="text" name="email" placeholder="E-mail">
<input type="text" name="uid" placeholder="Username">
<input type="password" name="pwd" placeholder="Password">
<br/>
<button type="submit" name="submit">Sign up</button>
<br/><br/>
<h8>already has an account?<a href="index.php">sign in here</a></h8>
</form>
</div>
</section>
<?php
include_once 'footer.php';
?>