Files
keyAjansPortfolyo/templates/login.html
T

32 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}Giriş Yap — Key Ajansı{% endblock %}
{% block content %}
<section class="auth-grid">
<div class="form-card">
<h2 class="form-title">Giriş Yap</h2>
<form method="post" action="{{ url_for('auth.do_login') }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<label>Kullanıcı adı
<input type="text" name="username" maxlength="64" autocomplete="username" required>
</label>
<label>Şifre
<input type="password" name="password" maxlength="128" autocomplete="current-password" required>
</label>
<button class="btn btn-primary btn-block" type="submit">Giriş Yap</button>
</form>
<p class="form-note">Hesabınız yok mu? <a href="{{ url_for('auth.kayit') }}">Kayıt olun</a></p>
</div>
<aside class="request-panel">
<h2 class="form-title">Talep Menüsü</h2>
<p class="request-panel-text">
Ajansımızda görmek istediğiniz bir çalışma, öneri veya işbirliği mi var?
Bir e-posta yazar gibi talebinizi bize iletin; inceleyip dönüş yapalım.
</p>
<a class="btn btn-primary" href="{{ url_for('talepler.new_talep') }}">Talebi Oluştur</a>
</aside>
</section>
{% endblock %}