23 lines
617 B
Django/Jinja
23 lines
617 B
Django/Jinja
|
|
{% extends 'main.jinja' %}
|
|
|
|
{% block content %}
|
|
<img src="{{ logo }}"/>
|
|
|
|
<h2>Reset your cPanel password</h2>
|
|
|
|
{% if file_suffix == "vip" %}
|
|
{% block ul %}
|
|
{% include 'details/reset_cpanel_pass_vip.jinja' %}
|
|
{% endblock %}
|
|
{% elif file_suffix == "syn" %}
|
|
{% include 'details/reset_cpanel_pass_syn.jinja' %}
|
|
{% endif %}
|
|
|
|
{# <ul>
|
|
<li>Log into <a href="{{ management_url }}" target="_blank">{{ management_name }}</a> here</li>
|
|
<li>Go to the hosting section (specific image with generic text?)</li>
|
|
<li>Go to the properties of the hosting service you wish to change the password for</li>
|
|
<li></li>
|
|
</ul> #}
|
|
{% endblock %} |