-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
110 lines (94 loc) · 2.82 KB
/
form.html
File metadata and controls
110 lines (94 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 20px;
background: #fff;
font-family: Arial, sans-serif;
}
.form-container {
width: 400px;
margin: auto;
padding: 30px;
border: 1px solid #ccc;
border-radius: 15px;
background-color: #f9f9f9;
text-align: center;
}
.form-container h2 {
text-align: center;
margin-bottom: 20px;
}
.form-container label {
margin-bottom: 8px;
font-weight: bold;
}
.ism,
.familiya,
.email,
.parol,
.parolni-takrorlash,
.submit {
width: 100%;
padding: 8px;
border-radius: 4px;
}
.submit {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
.submit:hover {
background-color: #45a049;
}
.submit-button {
text-align: center;
margin-top: 20px;
}
.namesurname {
display: flex;
justify-content: space-between;
gap: 10px;
}
</style>
</head>
<body>
<div class="form-container">
<form action="">
<h2 class="sign-up">Ro'yxatdan o'ting</h2>
<div class="namesurname">
<div class="name">
<input type="text" id="ism" name="ism" class="ism" placeholder="Ismingizni kirirting:"><br><br>
</div>
<div class="surname">
<input type="text" id="familiya" name="familiya" class="familiya"
placeholder="Familiyangizni kirirting:"><br><br>
</div>
</div>
<div class="email1">
<input type="email" id="email" name="email" class="email"
placeholder="Email manzilingizni kirirting:"><br><br>
</div>
<div class="password">
<input type="password" id="parol" name="parol" class="parol" placeholder="Parol yarating:"><br><br>
</div>
<div class="confirm-password">
<input type="password" id="parolni-takrorlash" name="parolni-takrorlash" class="parolni-takrorlash"
placeholder="Parolni takrorlang:"><br><br>
</div>
<div class="submit-button">
<input type="submit" value="Yuborish" class="submit">
</div>
</form>
</div>
</body>
</html>