added flask templates

This commit is contained in:
navanchauhan 2022-05-22 11:40:12 -06:00
parent 34965e2cdb
commit aaf1c40d86
4 changed files with 90 additions and 0 deletions

39
templates/base.html Normal file
View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %} {% endblock %} - FlixRec</title>
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-dark.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<style type="text/css">
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
font-size: 16px;
}
</style>
<nav>
<a href="{{ url_for('find_similar_title') }}">FlixRec</a> |
<a href="#">About</a>
</nav>
<hr>
<div class="content">
{% block content %} {% endblock %}
</div>
</body>

12
templates/index.html Normal file
View File

@ -0,0 +1,12 @@
{% extends 'base.html' %}
{% block content %}
<h1>{% block title %} Home {% endblock %}</h1>
<main>
<form action="/" method="POST">
<p>Enter Movie Title: <input type="text" name="title"></input></p>
<p><input type="submit" value="Search" /></p>
</form>
</main>
<footer>* General searches do not work well, try to be specific</footer>
{% endblock %}

View File

@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block content %}
<h1>{% block title %} Multiple Results {% endblock %}</h1>
<p>Multiple results found, please select the correct movie title.</p>
<main>
{% for deet in deets %}
<h2>{{deet["title"]}} ({{deet["year"]}})</h2>
<p><a href={{url_for('get_similar_titles',trakt_id=deet['trakt_id'])}}>Select This One</a></p>
<p>
{{deet["overview"]}}
</p>
{% endfor %}
</main>
{% endblock %}

View File

@ -0,0 +1,24 @@
{% extends 'base.html' %}
{% block content %}
<h1>{% block title %} Results {% endblock %}</h1>
<main>
{% for deet in deets %}
<h2>{{deet["title"]}} ({{deet["year"]}})</h2>
<i>{{deet["tagline"]}}</i> - <i>{{deet["runtime"]}} min</i>
<p>
{{deet["overview"]}}
</p>
{% endfor %}
<h3>Advance Filters</h3>
<form action="{{url_for('get_similar_titles')}}" method="GET">
<p><input type="hidden" name="trakt_id" value="{{deets[0]['trakt_id']}}"/></p>
<p>Minimum Year <input type="number" name="minYear" min="1900" max="2021" value="1900" /></p>
<p>Maximum Year <input type="number" name="maxYear" min="1900" max="2021" value="2021" /></p>
<p>Minimum Runtime <input type="number" name="minRuntime" min="1" value="70" /></p>
<p>Maximum Runtime <input type="number" name="maxRuntime" min="1" value="220" /></p>
<p><input type="hidden" name="filter" value="OwO" /> </p>
<p><input type="submit" value="Filter" /></p>
</form>
</main>
{% endblock %}