forked from WolferTamer/passwords-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
61 lines (51 loc) · 1.35 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<body>
<div class="container">
<h1>Account Signup</h1>
<form action="" id="signupForm" autocomplete="off">
<div class="input-group">
<label for="username">Email:</label></br>
<input type="text" id="username" name="Email" placeholder="Enter Your Email" >
</div>
<div class="input-group">
<label for="password">Password:</label></br>
<input type="password" id="password" name="Password" placeholder="Enter Your Password">
</div>
<div class="signup-button">
<input type="submit" value="Signup">
</div>
</form>
<p id="error" style="display: none;">Please enter all fields</p>
<script src="scripts/signupHandler.js"></script>
</div>
</body>
</html>
<style>
body {
h1 {
color: rgb(0, 0, 0);
font-size: auto;
}
font-family: 'Times New Roman', Times, serif, sans-serif;
background-image: url('login2.jpg');
}
.container {
max-width: 400px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.input-group {
margin-bottom: 15px;
font-size: 20px;
color: black;
}
input[type="submit"]{
background-color: #04AA6D; /* Green */
color: white;
text-align: center;
display: inline-block;
font-size: auto;
}
</style>