-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsignup.html
32 lines (31 loc) · 1.69 KB
/
signup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="#333" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<title>BudgetIt:: SIGN UP</title>
<link rel="stylesheet" href="./css/signup.css">
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<form action="signupauth.php" method="POST">
<label for="fullname">Full Name</label>
<input type="text" name="fullname" placeholder="Enter your first and last name" required><br>
<label for="username">Username</label>
<input type="text" name="username" placeholder="Enter a username" required><br>
<label for="email"> Email ID</label>
<input type="email" name="email" placeholder="Enter your active email address" required/><br>
<label for="password">Password</label>
<input type="password" name="password" placeholder="Enter your password" required><br>
<label for="confirm password">Confirm Password</label>
<input type="password" name="password2" placeholder="Enter your password again" required><br>
<input type="submit" value=" Sign Up">
<p>Already have an account? <a href="signin.html">Sign In</a></p>
<p id="warning">If you are using a public or shared computer, we recommend that you logout to prevent any un-authorised access to your account</p>
</form>
<script src="app.js"></script>
</body>
</html>