-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
101 lines (99 loc) · 3.97 KB
/
Index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bootstrap form</title>
<link
rel="stylesheet"
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="../node_modules/bootstrap-icons/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h3 class="text-center mt-5 mb-5 text-white bg-dark m-auto">
log in
</h3>
<div class="container">
<div class="width-main-box">
<form class="row g-3 p-5 needs-validation" novalidate>
<div class="col-md-6">
<label for="validationCustom01" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email-validation" placeholder="please Enter your email... " required>
<div class="valid-feedback">
Looks good!
</div>
<div class="invalid-feedback">
Please enter a valid email.
</div>
</div>
<div class="col-md-6">
<label for="validationCustom02" class="form-label">FullName</label>
<input type="text" class="form-control" id="validationCustom02" required placeholder="inter your name...">
<div class="valid-feedback">
Looks good!
</div>
<div class="invalid-feedback">
Please enter your Full.
</div>
</div>
<div class="col-md-6">
<div class="form-check">
<input type="radio" class="form-check-input" id="validationFormCheck2" name="radio-stacked" required>
<label class="form-check-label" for="validationFormCheck2">Male</label>
</div>
<div class="form-check mb-3">
<input type="radio" class="form-check-input" id="validationFormCheck3" name="radio-stacked" required>
<label class="form-check-label" for="validationFormCheck3">Female</label>
<div class="invalid-feedback">please Choose one the items</div>
<div class="valid-feedback">
Looks great!
</div>
</div>
</div>
<div class="col-md-6">
<label for="validationCustom04" class="form-label">location</label>
<select class="form-select" id="validationCustom04" required>
<option selected disabled value="">Choose...</option>
<option>Tehran</option>
<option>Shiraz</option>
<option>Aligoodarz</option>
</select>
<div class="invalid-feedback">
Please select a state.
</div>
<div class="valid-feedback">
Excellent Choose!
</div>
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="invalidCheck" required>
<label class="form-check-label" for="invalidCheck">
Agree to terms and conditions
</label>
<div class="invalid-feedback">
You must agree before submitting.
</div>
</div>
</div>
<div class="mb-3 mt-5">
<label for="validationTextarea" class="form-label">comment</label>
<textarea class="form-control" id="validationTextarea" placeholder="Required example textarea" required></textarea>
<div class="invalid-feedback">
Please enter a message in the textarea.
</div>
<div class="col-12 mt-5">
<button class="btn btn-primary m-auto col-4" id ="validation-form" type="submit">Submit</button>
</div>
</form>
</div>
</div>
<script src="./Index.js" type="module"></script>
</body>
</html>