Compare commits
2 Commits
dev-reset-
...
6f1f1032f6
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f1f1032f6 | |||
| c6e98eff4c |
@@ -15,7 +15,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body class="bg-cyan-950 flex flex-col h-full">
|
<body class="bg-cyan-950 flex flex-col h-full">
|
||||||
<h1 class="px-4 py-4 text-3xl font-extrabold text-orange-500">Torsearch</h1>
|
<h1 class="px-4 py-4 text-3xl font-extrabold text-orange-500">Torsearch</h1>
|
||||||
<div class="flex flex-col justify-center items-center">
|
<div class="p-4 flex flex-col justify-center items-center">
|
||||||
{% block body %}{% endblock %}
|
{% block body %}{% endblock %}
|
||||||
<div class="mt-2 inline-flex gap-4 justify-between text-white">
|
<div class="mt-2 inline-flex gap-4 justify-between text-white">
|
||||||
<a class="text-sm" href="{{ path('app_login') }}">Sign In</a>
|
<a class="text-sm" href="{{ path('app_login') }}">Sign In</a>
|
||||||
|
|||||||
@@ -9,6 +9,6 @@
|
|||||||
mediaType: mediaType,
|
mediaType: mediaType,
|
||||||
imdbId: imdbId
|
imdbId: imdbId
|
||||||
}) }}">
|
}) }}">
|
||||||
<h3 class="text-center text-white text-xl md:text-base md:max-w-[16ch]">{{ title }}</h3>
|
<h3 class="text-center text-white md:text-xl md:text-base md:max-w-[16ch]">{{ title }}</h3>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
</twig:Card>
|
</twig:Card>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col gap-4">
|
<div class="flex flex-col gap-4">
|
||||||
<twig:Card title="Popular Movies" contentClass="flex flex-col gap-4 md:flex-row md:justify-between w-full">
|
<twig:Card title="Popular Movies" contentClass="grid grid-cols-2 gap-4 md:flex md:flex-row md:justify-between w-full">
|
||||||
{% for movie in popular_movies %}
|
{% for movie in popular_movies %}
|
||||||
<twig:Poster imdbId="{{ movie.imdbId }}"
|
<twig:Poster imdbId="{{ movie.imdbId }}"
|
||||||
tmdbId="{{ movie.tmdbId }}"
|
tmdbId="{{ movie.tmdbId }}"
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
/>
|
/>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</twig:Card>
|
</twig:Card>
|
||||||
<twig:Card title="Popular TV Shows" contentClass="flex flex-col md:flex-row justify-between w-full">
|
<twig:Card title="Popular TV Shows" contentClass="grid grid-cols-2 gap-4 md:flex flex-col md:flex-row justify-between w-full">
|
||||||
{% for movie in popular_tvshows %}
|
{% for movie in popular_tvshows %}
|
||||||
<twig:Poster imdbId="{{ movie.imdbId }}"
|
<twig:Poster imdbId="{{ movie.imdbId }}"
|
||||||
tmdbId="{{ movie.tmdbId }}"
|
tmdbId="{{ movie.tmdbId }}"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% block title %}Log in — Torsearch{% endblock %}
|
{% block title %}Log in — Torsearch{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 min-w-96 border-orange-500 border-2 text-gray-50">
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50">
|
||||||
<h2 class="text-xl font-bold">Login</h2>
|
<h2 class="text-xl font-bold">Login</h2>
|
||||||
<form method="post" class="flex flex-col gap-2">
|
<form method="post" class="flex flex-col gap-2">
|
||||||
{% if error %}
|
{% if error %}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% block title %}Password Reset Email Sent{% endblock %}
|
{% block title %}Password Reset Email Sent{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 max-w-[420px] border-orange-500 border-2 text-gray-50">
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50">
|
||||||
<h2 class="text-xl font-bold">Head over to your email</h2>
|
<h2 class="text-xl font-bold">Head over to your email</h2>
|
||||||
|
|
||||||
<div class="mb-3 flex flex-col gap-4">
|
<div class="mb-3 flex flex-col gap-4">
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% block title %}Reset your password — Torsearch{% endblock %}
|
{% block title %}Reset your password — Torsearch{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 max-w-[420px] border-orange-500 border-2 text-gray-50">
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50">
|
||||||
<h2 class="text-xl font-bold">Reset your password</h2>
|
<h2 class="text-xl font-bold">Reset your password</h2>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% block title %}Reset your password — Torsearch{% endblock %}
|
{% block title %}Reset your password — Torsearch{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 min-w-96 border-orange-500 border-2 text-gray-50">
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50">
|
||||||
<h2 class="text-xl font-bold text-white">Reset your password</h2>
|
<h2 class="text-xl font-bold text-white">Reset your password</h2>
|
||||||
|
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
|
|||||||
Reference in New Issue
Block a user