-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
41 lines (38 loc) · 1.12 KB
/
signup.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
<?php
/**
* Created by PhpStorm.
* User: Derek
* Date: 5/1/2017
* Time: 11:24 PM
*/
include "inc/head.inc.php";
?>
<!--Header-->
<header>
<div class='container'>
<h1>Create an Account</h1>
</div>
</header>
<body>
<!--Main-->
<main class="container">
<form action="inc/create_account.php" method="post">
<div class="form-group">
<label for="username">Username:</label>
<input id="username" type="text" class="form-control" name="username">
</div>
<div class="form-group">
<label for="username">Email:</label>
<input id="username" type="text" class="form-control" name="email">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input id="password" type="password" class="form-control" name="password">
</div>
<button type="submit" class="btn btn-primary">Create Account</button>
</form>
</main>
<!--Footer Area-->
<?php
include "inc/foot.inc.php";
?>