-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
52 lines (47 loc) · 1.41 KB
/
signup.php
File metadata and controls
52 lines (47 loc) · 1.41 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
session_start();
$info = $_SESSION["info"];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SingUp</title>
<link rel="stylesheet" href="css/form.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<nav>
<div class="title">
<h1>Your ToDo App by 🐘 and 🐬</h1>
</div>
<menu class="menu">
<div>
<h2>SingUp</h2>
</div>
<div>
<a href="login.php">Login</a>
</div>
</menu>
</nav>
<form action="includes/signup.inc.php" method="POST">
<h1>SignUp</h1>
<label for="fullName">Full Name</label>
<input type="text" name="fullName" placeholder="Pedrito Calvo">
<label for="password">Password</label>
<input type="password" name="password" placeholder="Pcr.2390'cda">
<label for="email">email</label>
<input type="email" name="email" placeholder="pedritoc@nose.cii">
<input class="btn" type="submit" name="submit" value="SignUp">
</form>
<div>
<?=$info?>
</div>
</div>
</body>
</html>