-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photoshoot Review Form</title>
<!-- Firebase JavaScript SDK -->
<script defer src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="background-image"></div>
<div class="container">
<h1>Shrie Photography Review Form</h1>
<div class="photoshoot-image">
<img src="./assets/logo.png" alt="Photoshoot Image" width="150PX" height="150PX">
</div>
<form id="reviewForm">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">
</div>
<div class="form-group">
<label for="review">Review:</label>
<textarea id="review" name="review" rows="4" required></textarea>
</div>
<div class="form-group">
<label for="rating">Rating:</label>
<div class="rating" id="rating">
<input type="radio" id="star5" name="rating" value="5" required/><label for="star5" title="5 stars">★</label>
<input type="radio" id="star4" name="rating" value="4" /><label for="star4" title="4 stars">★</label>
<input type="radio" id="star3" name="rating" value="3" /><label for="star3" title="3 stars">★</label>
<input type="radio" id="star2" name="rating" value="2" /><label for="star2" title="2 stars">★</label>
<input type="radio" id="star1" name="rating" value="1" /><label for="star1" title="1 star">★</label>
</div>
</div>
<button type="submit">Submit</button>
</form>
</div>
<script src="script.js" defer></script>
</body>
</html>