28 lines
1.5 KiB
HTML
Executable File
28 lines
1.5 KiB
HTML
Executable File
{% load i18n %}
|
|
|
|
{% load smart_settings_tags %}
|
|
|
|
{% if autoadmin_properties.account %}
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1 col-lg-6 col-lg-offset-3">
|
|
<br>
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{% trans 'First time login' %}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="content login">
|
|
{% smart_setting 'COMMON_PROJECT_TITLE' as project_title %}
|
|
<p>{% blocktrans %}You have just finished installing <strong>{{ project_title }}</strong>, congratulations!{% endblocktrans %}</p>
|
|
<p>{% trans 'Login using the following credentials:' %}</p>
|
|
<p>{% blocktrans with autoadmin_properties.account as account %}Username: <strong>{{ account }}</strong>{% endblocktrans %}</p>
|
|
<p>{% blocktrans with autoadmin_properties.account.email as email %}Email: <strong>{{ email }}</strong>{% endblocktrans %}</p>
|
|
<p>{% blocktrans with autoadmin_properties.password as password %}Password: <strong>{{ password }}</strong>{% endblocktrans %}</p>
|
|
<p>{% trans 'Be sure to change the password to increase security and to disable this message.' %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|