forked from
pds.dad/at-advent
this repo has no description
1{% extends "layout.askama.html" %}
2
3{% block content %}
4<div class="hero min-h-[60vh]">
5 <div class="hero-content flex-col lg:flex-row-reverse">
6 <div class="text-center lg:text-left lg:ml-8">
7 <h1 class="text-5xl font-bold">Login to continue</h1>
8 <p class="py-6">Enter your atmosphere handle to track your progress and complete daily challenges.</p>
9 </div>
10 <div class="card shrink-0 w-full max-w-sm shadow-2xl bg-base-100">
11 <div class="card-body">
12 {% if let Some(err) = error %}
13 <div class="alert alert-error mb-4">
14 <svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
15 <span>{{ err }}</span>
16 </div>
17 {% endif %}
18
19 <form id="handle-form" action="/redirect/login" method="GET" >
20 <div class="">
21 <fieldset class="fieldset">
22 <legend class="fieldset-legend">Atmosphere Handle</legend>
23 <input id="handle-input" name="handle" type="text" class="input w-full" placeholder="alice.bsky.social" required/>
24 </fieldset>
25
26 </div>
27 <div class="mt-6">
28 <button class="btn btn-primary" type="submit">Continue</button>
29 </div>
30 </form>
31 </div>
32 </div>
33 </div>
34</div>
35
36{% endblock %}