335658f2bf
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ 'login'|t }} - NetEvents{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<div class="auth-box">
|
|
<h2>{{ 'organizer_login'|t }}</h2>
|
|
|
|
<form method="POST" action="{{ url_for('login') }}">
|
|
<input type="hidden" name="user_type" value="organizer">
|
|
|
|
<div class="form-group">
|
|
<label for="email">{{ 'email'|t }}</label>
|
|
<input type="email" id="email" name="email" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">{{ 'password'|t }}</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-block">{{ 'login'|t }}</button>
|
|
</form>
|
|
|
|
<p class="auth-footer">
|
|
{{ 'dont_have_account'|t }}
|
|
<a href="{{ url_for('register_organizer') }}">{{ 'register_as_organizer'|t }}</a>
|
|
</p>
|
|
|
|
<div class="attendee-link-box">
|
|
<p>{{ 'attendee_profile_link'|t }}</p>
|
|
<p><a href="{{ url_for('request_attendee_link') }}"><strong>{{ 'click_here'|t }}</strong></a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |