-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.php
28 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home page Login System</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body class="home index">
<div class="wrap">
<?php include_once 'includes/navbar.php'; ?>
<section>
<h3>Sign Up</h3>
<div class="content">
<form action="inc/signup.inc.php" method="POST">
<input type="text" name="user_first" placeholder="First Name..." autocomplete="none">
<input type="text" name="user_last" placeholder="Last Name..." autocomplete="none">
<input type="email" name="user_email" placeholder="Email" autocomplete="none">
<input type="text" name="user_uid" placeholder="Username" autocomplete="none">
<input type="password" name="user_pwd" placeholder="Password" autocomplete="none">
<button type="submit" name="submit" class="btn btn-submit">Sign up</button>
</form>
</div>
</section>
<?php include_once 'includes/footer.php'; ?>
</div>
</body>
</html>