-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathset_pass.php
More file actions
32 lines (28 loc) · 817 Bytes
/
Copy pathset_pass.php
File metadata and controls
32 lines (28 loc) · 817 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
29
30
<?php
if(session_status() == PHP_SESSION_NONE)
session_start();
$_SESSION['otp'] = null;
?>
<!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" type="text/css">
<title>Signup</title>
</head>
<body>
<div class="login-page">
<div class="container">
<div class="form">
<form class="register-form" action="save.php" method="POST">
<input type="password" placeholder="Password" name="pass" />
<input type="password" placeholder="Confirm password" name="cpass"/>
<button type="submit">Sign Up</button>
<p class="message">Already registered? <a href="index.php">Sign In</a></p>
</form>
</div>
</div>
</div>
</body>
</html>