-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.php
More file actions
28 lines (27 loc) · 770 Bytes
/
registration.php
File metadata and controls
28 lines (27 loc) · 770 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
28
<?php
include 'includes/autoloader.inc.php';
Control::registration();
$string = 'Registration Page';
require("html.php");
?>
<div class="form">
<h1>Registration</h1>
<p id="error"></p>
<form name="registration" action="" method="post">
<div class ="input_row">
<input type="text" placeholder="Username" id="username" />
<span id="usernameError"></span>
</div>
<div class ="input_row">
<input type="text" placeholder="Age" id="age" />
<span id="ageError"></span>
</div>
<div class ="input_row">
<input type="password" placeholder="Password" id="pass" />
<span id="passError"></span>
</div>
<input type="button" value="Register" id="register" />
</form>
</div>
</body>
</html>