Files

33 lines
1.3 KiB
HTML
Raw Permalink 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 %}Yeni Talep — Key Ajansı{% endblock %}
{% block content %}
<section class="auth-single">
<div class="form-card form-card-wide">
<h2 class="form-title">Yeni Talep</h2>
<p class="form-note">Bir e-posta yazar gibi talebinizi oluşturun.</p>
<form method="post" action="{{ url_for('talepler.do_talep') }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<div class="field-row">
<label>Kimden — Adınız
<input type="text" name="sender_name" maxlength="100" value="{{ prefill_name }}" autocomplete="name" required>
</label>
<label>Kimden — E-posta
<input type="email" name="sender_email" maxlength="120" value="{{ prefill_email }}" autocomplete="email" required>
</label>
</div>
<label>Konu
<input type="text" name="subject" maxlength="150" placeholder="Talebinizin kısa özeti" required>
</label>
<label>Mesajınız
<textarea name="body" maxlength="5000" rows="8" placeholder="Talebinizi detaylı şekilde açıklayın…" required></textarea>
</label>
<button class="btn btn-primary btn-block" type="submit">Başvuru Yap</button>
<p class="form-note form-note-center"><a href="/">Geri Dön</a></p>
</form>
</div>
</section>
{% endblock %}