-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
27 lines (27 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>cars</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="menu">
<a class="menu-item" href="home.php">Home</a>
<a class="menu-item" href="index.php">Cars</a>
<a class="menu-item" href="post.php">Post</a>
<a class="menu-item" href="login.html">Log In</a>
<div class="main">Sign Up</div>
</div>
<div class="log-in">
<form id="log-in" action="createUser.php" method="post">
<h1 class="log-in-element">Sign Up</h1>
<h2 class="log-in-element">Username</h2>
<input class="log-in-element" type="text" id="username" placeholder="Username" name="username" required>
<h2 class="log-in-element">Password</h2>
<input class="log-in-element" type="password" id="password" placeholder="Password" name="password" required>
<button type="submit">Sign Up</button>
</form>
</div>
</body>
</html>