forked from tinkerhub/stackup-teamplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign.html
More file actions
80 lines (71 loc) · 2.11 KB
/
sign.html
File metadata and controls
80 lines (71 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Sign Up Form</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: black;
text-align: center;
}
.signup-container {
background-color: #fff;
max-width: 400px;
margin: 100px auto;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
form {
display: flex;
flex-direction: column;
}
.input-container {
margin: 10px 0;
}
label {
font-weight: bold;
}
input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
button {
background-color: rgb(237, 205, 171);
color: #fff;
padding: 10px;
border: none;
border-radius: 3px;
cursor: pointer;
}
button:hover {
background-color: black;
}
</style>
</head>
<body>
<form action="/signup" method="POST">
<div class="signup-container">
<h2>Sign Up</h2>
<form action="#" method="POST">
<div class="input-container">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
</div>
<div class="input-container">
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username" required>
</div>
<div class="input-container">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
</div>
<button type="submit"><a href="form.html">Sign Up</a></button>
</form>
</div>
</body>
</html>