2018-11-27 12:01:36 +01:00
|
|
|
{% extends "layouts/app.twig" %}
|
|
|
|
{% import 'macros/base.twig' as m %}
|
|
|
|
|
2021-10-04 21:45:06 +02:00
|
|
|
{% block title %}{{ __('login.login') }}{% endblock %}
|
2018-11-27 12:01:36 +01:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-md-12">
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="row mb-3 mt-5">
|
2020-11-15 18:47:30 +01:00
|
|
|
<div class="col-sm-12 text-center" id="welcome-title">
|
2018-11-27 12:01:36 +01:00
|
|
|
<h2>{{ __('Welcome to the %s!', [config('name') ~ m.angel() ~ (config('app_name')|upper) ])|raw }}</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="row mb-3">
|
2018-11-27 12:01:36 +01:00
|
|
|
{% for name,date in {
|
|
|
|
(__('Buildup starts')): config('buildup_start'),
|
|
|
|
(__('Event starts')): config('event_start'),
|
|
|
|
(__('Event ends')): config('event_end'),
|
|
|
|
(__('Teardown ends')): config('teardown_end')
|
2019-03-16 22:02:36 +01:00
|
|
|
} | filter(date => date) %}
|
2018-11-27 12:01:36 +01:00
|
|
|
{% if date > date() %}
|
2021-07-24 18:19:53 +02:00
|
|
|
<div class="col-sm-3 text-center d-none d-sm-block">
|
2018-11-27 12:01:36 +01:00
|
|
|
<h4>{{ name }}</h4>
|
2022-12-21 14:18:21 +01:00
|
|
|
<div class="h2 text-body" title="{{ date.format(__('Y-m-d H:i')) }}" data-countdown-ts="{{ date.getTimestamp() }}">%c</div>
|
2018-11-27 12:01:36 +01:00
|
|
|
<small>{{ date.format(__('Y-m-d')) }}</small>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="row mb-5">
|
2021-08-05 01:00:12 +02:00
|
|
|
<div class="col-md-6 offset-md-3 col-lg-4 offset-lg-4">
|
|
|
|
<div class="card {{ m.type_bg_class() }}">
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="card-body">
|
2020-03-01 18:21:16 +01:00
|
|
|
{% include 'layouts/parts/messages.twig' %}
|
2018-11-27 12:01:36 +01:00
|
|
|
|
2023-02-02 22:53:51 +01:00
|
|
|
{% if session_get('show_welcome', false) %}
|
|
|
|
{{ m.alert(config('welcome_msg') | md, null, true) }}
|
|
|
|
{% endif %}
|
|
|
|
|
2018-11-27 12:01:36 +01:00
|
|
|
<form action="" enctype="multipart/form-data" method="post">
|
|
|
|
{{ csrf() }}
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="mb-3">
|
|
|
|
<div class="input-group input-group-lg">
|
2021-08-05 01:00:12 +02:00
|
|
|
<span class="input-group-text {{ m.type_text_class() }}">
|
2021-04-17 14:49:53 +02:00
|
|
|
{{ m.angel }}
|
|
|
|
</span>
|
2019-11-15 21:42:08 +01:00
|
|
|
<input
|
2021-04-17 14:49:53 +02:00
|
|
|
class="form-control"
|
2020-06-01 15:13:21 +02:00
|
|
|
id="form_nick"
|
|
|
|
type="text"
|
|
|
|
name="login"
|
|
|
|
value=""
|
|
|
|
placeholder="{{ __('Nick') }}"
|
|
|
|
autofocus>
|
2019-07-21 18:53:51 +02:00
|
|
|
</div>
|
2018-11-27 12:01:36 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="mb-3">
|
|
|
|
<div class="input-group input-group-lg">
|
2021-08-05 01:00:12 +02:00
|
|
|
<span class="input-group-text {{ m.type_text_class() }}">
|
2021-04-17 14:49:53 +02:00
|
|
|
<i class="bi bi-key"></i>
|
|
|
|
</span>
|
2020-06-01 15:13:21 +02:00
|
|
|
<input
|
2022-12-10 23:05:49 +01:00
|
|
|
class="form-control" id="form_password" type="password"
|
|
|
|
name="password" value="" placeholder="{{ __('Password') }}" autocomplete="current-password"
|
2020-06-01 15:13:21 +02:00
|
|
|
>
|
2019-07-21 18:53:51 +02:00
|
|
|
</div>
|
2018-11-27 12:01:36 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="mb-3 text-center">
|
2019-07-21 18:53:51 +02:00
|
|
|
<button class="btn btn-primary btn-lg btn-block" type="submit" name="submit">
|
2021-10-04 21:45:06 +02:00
|
|
|
{{ __('login.login') }}
|
2019-07-21 18:53:51 +02:00
|
|
|
</button>
|
2018-11-27 12:01:36 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
{% if config('oauth') is not empty %}
|
2021-08-05 01:00:12 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="mb-3 btn-group">
|
|
|
|
{% for name,config in config('oauth') %}
|
|
|
|
<a href="{{ url('oauth/' ~ name) }}" class="btn btn-primary btn-lg{% if config.hidden|default(false) %} d-none{% endif %}">
|
|
|
|
{{ __(
|
|
|
|
'oauth.login-using-provider',
|
|
|
|
[__(config.name|default(name|capitalize))]
|
|
|
|
) }}
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-04-17 14:49:53 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-11-15 18:47:30 +01:00
|
|
|
|
2019-07-21 18:53:51 +02:00
|
|
|
<div class="text-center">
|
2019-10-08 16:17:06 +02:00
|
|
|
<a href="{{ url('/password/reset') }}" class="">
|
2019-07-21 18:53:51 +02:00
|
|
|
{{ __('I forgot my password') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-11-27 12:01:36 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-04-17 14:49:53 +02:00
|
|
|
<div class="row mb-5">
|
2018-11-27 12:01:36 +01:00
|
|
|
<div class="col-sm-6 text-center">
|
|
|
|
<h2>{{ __('Register') }}</h2>
|
|
|
|
{% if has_permission_to('register') and config('registration_enabled') %}
|
2021-12-10 01:51:04 +01:00
|
|
|
{% if config('enable_password') %}
|
|
|
|
<p>{{ __('Please sign up, if you want to help us!') }}</p>
|
2023-04-01 14:23:52 +02:00
|
|
|
<a href="{{ url('/sign-up') }}" class="btn btn-primary">{{ __('Register') }} »</a>
|
2021-12-10 01:51:04 +01:00
|
|
|
{% else %}
|
|
|
|
<p>{{ __('Registration is only available via external login.') }}</p>
|
|
|
|
{% endif %}
|
2018-11-27 12:01:36 +01:00
|
|
|
{% else %}
|
|
|
|
{{ m.alert(__('Registration is disabled.'), 'danger') }}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-6 text-center">
|
|
|
|
<h2>{{ __('What can I do?') }}</h2>
|
|
|
|
<p>{{ __('Please read about the jobs you can do to help us.') }}</p>
|
2023-02-13 19:28:10 +01:00
|
|
|
<a href="{{ url('/angeltypes/about') }}" class="btn btn-primary">
|
|
|
|
{{ __('angeltypes.about') }} »
|
2021-07-24 18:19:53 +02:00
|
|
|
</a>
|
2018-11-27 12:01:36 +01:00
|
|
|
</div>
|
|
|
|
|
2019-10-06 17:56:53 +02:00
|
|
|
<div class="col-md-12 text-center">
|
2021-07-24 21:08:04 +02:00
|
|
|
{{ m.icon('info-circle') }} {{ __('Please note: You have to activate cookies!') }}
|
2019-10-06 17:56:53 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-27 12:01:36 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|