-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
22 lines (21 loc) · 844 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Register</title>
</head>
<body>
<img src="explore1.jpg"/>
<form action="login.php" method="POST" class="reg_form">
<input type="hidden" name="unique_id" value="<?php echo uniqid();?>"/>
<label>Username</label>
<input type="text" name="username"/>
<label>Password</label>
<input type="password" name="password"/>
<label>Email</label>
<input type="email" name="email"/>
<input type="hidden" name="created_at" value="<?php echo date('d-m-y h:i:s');?>"/>
<input type="hidden" name="updated_at" value="<?php echo date('d-m-y h:i:s');?>"/>
<input type="submit" value="Register to Continue" name="register" id="reg_btn" style="margin-right:0;"/>
</form>
</body>
</html>