-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (141 loc) · 4.12 KB
/
index.html
File metadata and controls
151 lines (141 loc) · 4.12 KB
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
<!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 rel="stylesheet" href="./style.css" />
<link rel="icon" href="./images/logo1.png" />
<title>Royz Ghibli Swap</title>
</head>
<body>
<!-- header section -->
<section id="site-header">
<img id="logo" src="./images/logo1.png" alt="page-logo" />
<article class="alert-blue">
<strong>AWESOME!</strong> Movie added to favourites :)
</article>
<article class="alert-red">
<strong>SCHUCKS!</strong> Movie removed to favourites :(
</article>
<article class="alert-green">
<strong>NICE!</strong> Movie added to cart ;D
</article>
<article class="alert-purple">
<strong>BOSSMAN!</strong> Sharing is caring, Thanks!
</article>
<article class="alert-orange">
<strong>Oi!</strong> Movie removed from cart!
</article>
</section>
<hr />
<!-- Add movie form -->
<section id="add-item">
<form id="movie-form" action="">
<h3>MOVIE DETAILS</h3>
<label for="name">Movie Title: </label>
<input
id="name"
type="text"
name="movie-name"
placeholder="Add Movie Name"
required
/>
<label for="original-name">Alternate Title: </label>
<input
id="original-name"
type="text"
name="movie-original-name"
placeholder="Add Original Movie Name"
required
/>
<label for="image">Image URL: </label>
<input
id="image"
type="text"
name="movie-image"
placeholder="Add Movie Image URL"
required
/>
<label for="director">Director: </label>
<input
id="director"
type="text"
name="movie-director"
placeholder="Add Movie Director"
required
/>
<label for="producer">Producer: </label>
<input
id="producer"
type="text"
name="movie-producer"
placeholder="Add Movie Producer"
required
/>
<label for="release-date">Release Date: </label>
<input
id="release-date"
type="text"
name="movie-release-date"
placeholder="Add Movie Release Date"
required
/>
<label for="run-time">Movie Run Time: </label>
<input
id="run-time"
type="text"
name="movie-run-time"
placeholder="Add Movie Run Time"
required
/>
<label for="score">Movie Score: </label>
<input
id="score"
type="text"
name="movie-score"
placeholder="Add Movie Rating"
required
/>
<label for="description">Describe the Movie: </label> <br />
<textarea
name="description"
id="description"
cols="20"
rows="5"
placeholder="Add Description"
required
></textarea>
<input type="submit" value="Submit Movie" name="submit-movie" />
</form>
</section>
<button id="new-movie-btn">SHARE A MOVIE</button>
<!-- New movies section -->
<section id="new-movies"></section>
<!-- Movies section -->
<section id="products"></section>
<hr />
<!-- Comment section -->
<h2>Comments</h2>
<section class="dialogbox">
<form action="" id="post-comment">
<textarea
class="comment-space"
placeholder="Type your comment here"
></textarea>
<br />
<input type="submit" name="submit-comment" value="Add Comment 💬" />
<!-- <button class="box10 button" type="submit" value="submit">
Add 💬
</button> -->
</form>
<hr />
<section id="posted-comments"></section>
</section>
<!-- Footer section -->
<footer id="footer">
<p>© Roy Okite 2022</p>
</footer>
<script src="./src/index.js"></script>
</body>
</html>