-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (84 loc) · 3.79 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
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
<!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">
<meta name="description" content="Movie Recommender System">
<meta name="author" content="Martin Kondor">
<link rel="icon" type="image/x-icon" href="https://cdn.pixabay.com/photo/2014/04/02/14/08/mouse-306274__480.png">
<title>Movie Recommender</title>
<!-- Icons -->
<link rel="icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<link rel="shortcut icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<link rel="apple-touch-icon" sizes="115x93" href="https://martinkondor.github.io/img/icon.bmp">
<!-- / Icons -->
<!-- Styles -->
<link rel="stylesheet" href="public/css/libs/bootstrap-4.3.1.min.css">
<link href="public/css/main.css?v=2022062" rel="stylesheet">
<!-- / Styles -->
</head>
<body class="bg">
<div id="loaderSign" class="text-center">
<div class="spinner-border text-white" role="status" style="width: 5rem; height: 5rem;"></div>
<br>
<p class="font-weight-bold text-uppercase" style="font-size: 20px;">
Loading...
</p>
</div>
<div class="container-fluid text-center mt-1">
<h1 class="font-weight-bold h2 mt-4 mb-4">
<a href="/" style="text-decoration: none; color: white;"> Movie Recommender</a>
</h1>
<div id="box">
<input id="title" type="text" class="form-control" placeholder="Type in a movie name" required="">
<input id="year" type="text" class="form-control mt-2" placeholder="In what year it was released? (Optional)" minlength="4" style="display: none;">
<button id="submit" type="submit" class="btn btn-primary mt-2 btn-block text-uppercase">show Movies</button>
<hr>
<div id="box-list" class="mt-4">
<p id="emptyText" class="text-muted mt-5">
<i>
Recommend movies
</i>
</p>
<h3 id="didYouMeanTitle" class="font-weight-bold mb-4">
<div class="text-uppercase">
Here are the recomended movies
</div>
<p class="h5 text-muted">
</p>
</h3>
<h3 id="weFoundNothing" class="text-uppercase font-weight-bold mb-4">
We Found No Movies With This Title
</h3>
<h4 id="choosenMovie" class="mb-4">
</h4>
<div id="movie-list">
<!--
<div class="movie-li">
1. Movie title
</div>
<div class="movie-li">
2. Movie title
</div>
<div class="movie-li">
3. Movie title
</div>
-->
</div>
</div>
<footer class="footer mt-5">
<p class="text-muted" style="font-size: 12px;">
All copyrights reserved by Alex19578 2023
<br>
</p>
</footer>
</div>
</div>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@1.1.0/lib/bundle.min.js"></script>
<script src="public/js/main.js?v=2022062"></script>
<!-- / Scripts -->
</body>
</html>