Initial commit: Key Ajans portfolio site

This commit is contained in:
kayasamat
2026-08-07 17:46:14 +03:00
commit 91bb52bce4
18 changed files with 1656 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{% 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 %}