-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.89 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
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PROJECTOR</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="main.js"></script>
</head>
<body>
<header>
<img src="../images/projector-logo.png">
</header>
<form class="add_movie_form" id="add_movie_form">
<h1>Add New Movie</h1>
<label for="name">Movie Name</label>
<input type="text" name="name" id="" />
<label for="releaseyr">Release Year</label>
<input type="text" name="releaseyr" id="" />
<div class="divide">
<label for="Language">Language</label>
<select name="Language">
<option value="English">English</option>
<option value="Tamil">Tamil</option>
<option value="Hindi">Hindi</option>
<option value="Malayalam">Malayalam</option>
</select>
</div>
<div class="divide">
<label for="rating">Rating</label>
<select name="rating">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</div>
<label for="thumburl">Thumbnail Url</label>
<input type="url" name="thumburl" id="" />
<label for="plot">Plot</label>
<textarea name="plot" cols="100" rows="5"></textarea>
<label for="posterurl">Poster Url</label>
<input type="url" name="posterurl" id="" />
<label for="cast">Cast</label>
<textarea name="cast" cols="100" rows="5"></textarea>
<input type="submit" name="submit" value="SUBMIT">
</form>
</body>
</html>