-
Notifications
You must be signed in to change notification settings - Fork 0
/
task6.html
154 lines (132 loc) · 5.43 KB
/
task6.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha384-..." crossorigin="anonymous">
<title>Bootstrap - Task 6</title>
<style>
label {
padding-top: 3%;
}
table {
width: 500px;
background-color: rgb(240, 239, 239);
text-align: left;
}
.btn{
color: white;
background-color: #dc3545;
border: 1px solid #dc3545;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
padding: 10px;
width: 80%;
transition: all 0.2s ease-in-out;
}
.btn:hover {
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
transform: scale(1.1);
}
.btn:active {
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.7);
transform: scale(1.05);
}
</style>
</head>
<body>
<div class="container-fluid">
<center>
<div class="row">
<form class="form needs-validation" method="post" style="margin-top: 2%;" novalidate>
<table cellpadding="5">
<tr>
<th>
<label class="form-label me-3" for="name">Name</label>
</th>
</tr>
<tr>
<td>
<div class="input-group has-validation">
<input type="text" class="form-control" id="fname" aria-describedby="inputGroupPrepend" required>
<div class="invalid-feedback">
Name is required.
</div>
</div>
</td>
</tr>
<tr>
<th>
<label class="form-label me-3" for="name">Email</label>
</th>
</tr>
<tr>
<td>
<div class="input-group has-validation">
<input type="text" class="form-control" id="email" aria-describedby="inputGroupPrepend" required>
<div class="invalid-feedback">
Email is required.
</div>
</div>
</td>
</tr>
<tr>
<th>
<label class="form-label me-3" for="name">Password</label>
</th>
</tr>
<tr>
<td>
<div class="input-group has-validation">
<input type="password" class="form-control" id="fname" aria-describedby="inputGroupPrepend" required>
<div class="invalid-feedback">
Password is required.
</div>
</div>
</td>
</tr>
<tr>
<th>
<label class="form-label me-3" for="name">Hobbies</label>
</th>
</tr>
<tr>
<td>
<input type="number" class="form-control" id="fname">
</td>
</tr>
<tr>
<td align="center" style="padding-top: 20px;">
<button type="submit" class="btn">
Submit
</button>
</td>
</tr>
</table>
</form>
</div>
</center>
</div>
<script>
(() => {
'use strict'
// Fetch all the forms we want to apply custom Bootstrap validation styles to
const forms = document.querySelectorAll('.needs-validation')
// Loop over them and prevent submission
Array.from(forms).forEach(form => {
form.addEventListener('submit', event => {
if (!form.checkValidity()) {
event.preventDefault()
event.stopPropagation()
}
form.classList.add('was-validated')
}, false)
})
})()
</script>
</body>
</html>