-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
122 lines (117 loc) · 5.68 KB
/
form.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
<!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">
<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">
<link rel="stylesheet" href="src/style.css">
<title>Feedback page</title>
</head>
<body>
<div class="page-wrapper">
<header>
<div class="container">
<div class="row align-items-center">
<div class="col-auto">
<img class="logo" src="src/images/logo_myweatherapp.svg" width="55" height="55"
alt="The weather logo">
</div>
<div class="col">
<h1 class="logo-text my-custom-font">My Bootstrap Weather App</h1>
</div>
</div>
</div>
</header>
<form class="form-container">
<h2>What do you think about my Weather app?</h2>
<p>Select all choices that apply</p>
<div class="row">
<div class="col">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="option1" name="weather-search"
value="option1">
<label class="form-check-label" for="option1">The weather search is not working</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="option2" name="page-loading"
value="option2">
<label class="form-check-label" for="option2">The page took too long to load</label>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="option3" name="themes" value="option3">
<label class="form-check-label" for="option3">The theme buttons are not working</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="option4" name="conversion" value="option4">
<label class="form-check-label" for="option4">The conversion to Fahrenheit or Celsius is
not working</label>
</div>
</div>
</div>
<br />
<div class="row">
<div class="mb-3">
<label for="neg-feedback" class="form-label">Add other reasons and/or explain the above negative
feedback:</label>
<textarea class="form-control" id="neg-feedback" name="additional-feedback" rows="4"></textarea>
</div>
<div class="mb-3">
<label for="pos-feedback" class="form-label">Positive feedback:</label>
<textarea class="form-control" id="pos-feedback" name="positive-feedback" rows="4"></textarea>
</div>
<p>The data you provide helps me to fulfill my dream - to become a skilled
full-stack
developer.</p>
<br />
</div>
<div class="mb-3">
<button type="submit" id="submit-btn" class="btn btn-primary">Submit</button>
<button type="reset" id="cancel-btn" class="btn btn-secondary">Reset</button>
</div>
</form>
<footer>
<div class="container text-left custom-container">
<div class="row">
<div class="col">
<a href="https://github.com/sarasjodin/MyWeatherApp" target="_blank">Coded by</a>
<a href="https://www.sarasjodin.com/" target="_blank">
<img class="small-logo" src="src/images/logo_sarasjodincom.svg" alt="Logo sarasjodin.com">
</a>
</div>
<div class="col d-flex justify-content-end">
<nav style="--bs-breadcrumb-divider: '';" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item"><a href="about.html">About</a></li>
<li class="breadcrumb-item active"><a href="#">Feedback</a></li>
</ol>
</nav>
</div>
</div>
</div>
<div class="container text-left">
<div class="row">
<div class="col d-flex flex-wrap justify-content-start"><a href="https://www.netlify.com"
target="_blank">
<img src="src/images/logo-netlify.png" alt="Logo Netlify" width="80">
</a>
<p class="powered-by"><a href="https://www.netlify.com" target="_blank">Powered by Netlify</a>
</p>
</div>
</div>
</div>
</footer>
</div>
<script src="src/index-form.js"></script>
</body>
</html>