-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (23 loc) · 939 Bytes
/
index.php
File metadata and controls
23 lines (23 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
include("connection.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Sign up</title>
</head>
<body>
<div id="form">
<h1 id="heading">Sign up form</h1>
<form name="form" action= "signup.php"method="POST">
<input type="text" id="user" name="user" placeholder="Enter user name" required> <br><br>
<input type="email" id="email" name="Email" placeholder="Enter Email" required> <br><br>
<input type="password" id="pass" name="pass" placeholder="Enter create password" required> <br><br>
<input type="password" id="cpass" name="cpass" placeholder="Rewrite Password" required> <br><br>
<input type="submit" id="btn" value="signup" name="submit" >
</form>
</body>
</html>