-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (79 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<title>She Codes Plus</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
<meta charset="UTF-8" />
<link href="src/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img src="images/logo.png" alt="She Codes Plus Logo" class="logo" />
<h1>HTML Forms</h1>
<h3>HTML Challenge 1</h3>
<p>
Create a login form with username field, a password field and a login
button
</p>
<form>
<input
type="text"
name="username"
id="udername"
placeholder="Enter your username"
autocomplete="off"
/>
<input
type="password"
name="password"
id="password"
placeholder="Enter your password"
autocomplete="off"
/>
<input type="submit" value="Login" />
</form>
<h3>HTML Challenge 2</h3>
<p>Import Bootstrap and apply the form component styling</p>
<div class="container no-margin">
<div class="row">
<div class="col col-md-10 col-sm col-lg-7 col-xl-6 col-xxl-5">
<form>
<fieldset class="reappliedBorder">
<div class="mb-3">
<input
type="text"
name="username"
class="form-control"
id="username"
placeholder="Enter your username"
autocomplete="off"
/>
</div>
<div class="mb-3">
<input
type="password"
name="password"
class="form-control"
id="exampleInputPassword1"
placeholder="Enter your password"
autocomplete="off"
/>
</div>
<button type="submit" class="btn btn-success">Submit</button>
</fieldset>
</form>
</div>
</div>
</div>
<script src="src/index.js"></script>
</body>
</html>