-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (111 loc) · 5.52 KB
/
index.html
File metadata and controls
120 lines (111 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Codeup Movie Application</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<h1>Movie Application</h1>
<div class="container">
<form>
<label class="auto" for="mtitle">Movie title:</label><br>
<input class="auto" type="text" id="mtitle" name="mtitle" placeholder="type movie name here.."><br>
<label class="auto" for="mrating">Movie rating:</label><br>
<input class="auto" type="text" id="mrating" name="mrating" placeholder="1/5 stars"><br><br>
<input class="auto" type="submit" id="submit">
</form>
</div>
<!--movie title and rating list-->
<div id="main"></div>
<!--<body>-->
<!--<div id="main" class="m-3">-->
<!-- <div class="movie-info">-->
<!-- <h1 class="text-center m-3">-->
<!-- Movie Project-->
<!-- </h1>-->
<!-- <div class="input-group col-4 mb-5 p-3">-->
<!-- <span class="input-group-text " id="inputGroup-search-movie">-->
<!-- Search a Movie-->
<!-- </span>-->
<!-- <input type="text" class="form-control" aria-label="search-movie-input" aria-describedby="search-movie-input">-->
<!-- <br>-->
<!-- <div class="stars rater">-->
<!-- <form class="rating" action="">-->
<!-- <label>-->
<!-- <input class="radio" type="radio" name="stars" value="1" />-->
<!-- <span class="icon">★</span>-->
<!-- </label>-->
<!-- <label>-->
<!-- <input class="radio" type="radio" name="stars" value="2" />-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- </label>-->
<!-- <label>-->
<!-- <input class="radio" type="radio" name="stars" value="3" />-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- </label>-->
<!-- <label>-->
<!-- <input class="radio" type="radio" name="stars" value="4" />-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- </label>-->
<!-- <label>-->
<!-- <input class="radio" type="radio" name="stars" value="5" />-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- <span class="icon">★</span>-->
<!-- </label>-->
<!-- </form>-->
<!-- </div>-->
<!-- </div>-->
<!-- <h2 class="p-3 mt-3">-->
<!-- Add a New Movie to the Collection!-->
<!-- </h2>-->
<!-- <form class="row g-3 px-3">-->
<!-- <div class="title col-md-6" id="movie-title">-->
<!-- <label for="movie-title" class="form-label">-->
<!-- Movie Title-->
<!-- </label>-->
<!-- <input type="text" class="form-control" id="movie-title-input" placeholder="ex: The Irishman">-->
<!-- </div>-->
<!-- <div class="col-6 " id="director-title">-->
<!-- <label for="director-title" class="form-label">-->
<!-- Film Director-->
<!-- </label>-->
<!-- <input type="text" class="form-control" id="director-title-input" placeholder="ex: Martin Scorsese">-->
<!-- </div>-->
<!-- <div class="col-4">-->
<!-- <label for="genre" class="form-label">-->
<!-- Genre-->
<!-- </label>-->
<!-- <input type="text" class="form-control" id="genre" placeholder="Drama, Western, Sci-FI, Comedy">-->
<!-- </div>-->
<!-- <div class="col-md-1">-->
<!-- <label for="year" class="form-label">-->
<!-- Year-->
<!-- </label>-->
<!-- <input type="text" class="form-control" id="year">-->
<!-- </div>-->
<!-- <div class="col-12">-->
<!-- <button type="submit" class="btn btn-primary">-->
<!-- Add My Movie!-->
<!-- </button>-->
<!-- </div>-->
<!-- </form>-->
<!-- </div>-->
<!--</div>-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="js/movies.js"></script>
</body>
</html>