1
0
Fork 0
forked from s3lph/matemat

feat: refactor user settings part 1

This commit is contained in:
Valentin Weber 2024-12-07 21:07:15 +01:00 committed by weva
parent dd65b5c4d0
commit 9a1c220813

View file

@ -25,37 +25,57 @@
<h2>My Account</h2> <h2>My Account</h2>
<form id="settings-myaccount-form" method="post" action="/settings?change=account" accept-charset="UTF-8"> <form id="settings-myaccount-form" method="post" action="/settings?change=account" accept-charset="UTF-8">
<label class="form-label" for="settings-myaccount-username">Username: </label> <div class="row g-2">
<input class="form-control" id="settings-myaccount-username" type="text" name="username" value="{{ authuser.name }}" /><br/> <div class="col-md">
<div class="form-floating">
<label class="form-label" for="settings-myaccount-email">E-Mail: </label> <input class="form-control" id="settings-myaccount-username" type="text" name="username" value="{{ authuser.name }}">
<input class="form-control" id="settings-myaccount-email" type="text" name="email" value="{% if authuser.email is not none %}{{ authuser.email }}{% endif %}" /><br/> <label for="settings-myaccount-username">Username</label>
</div>
<label class="form-label" for="settings-myaccount-receipt-pref">Receipts: </label> </div>
<div class="col-md">
<div class="form-floating">
<input class="form-control" id="settings-myaccount-email" type="email" name="email" value="{% if authuser.email is not none %}{{ authuser.email }}{% endif %}">
<label for="settings-myaccount-email">E-Mail</label>
</div>
</div>
{% if config_smtp_enabled == '1' %}
<div class="col-md">
<div class="form-floating">
<select class="form-select" id="settings-myaccount-receipt-pref" name="receipt_pref"> <select class="form-select" id="settings-myaccount-receipt-pref" name="receipt_pref">
{% for pref in receipt_preference_class %} {% for pref in receipt_preference_class %}
<option value="{{ pref.value }}" {% if authuser.receipt_pref == pref %} selected="selected" {% endif %}>{{ pref.human_readable }}</option> <option value="{{ pref.value }}" {% if authuser.receipt_pref == pref %} selected {% endif %}>{{ pref.human_readable }}</option>
{% endfor %} {% endfor %}
</select> </select>
{% if config_smtp_enabled != '1' %}Sending receipts is disabled by your administrator.{% endif %} <label for="settings-myaccount-receipt-pref">Receipts</label>
<br/> </div>
</div>
{% endif %}
</div>
<div class="row g-2">
<div class="col">
<div class="form-check"> <div class="form-check">
<input class="form-check-input" id="settings-myaccount-ismember" type="checkbox" disabled="disabled" {% if authuser.is_member %} checked="checked" {% endif %}/> <input class="form-check-input" id="settings-myaccount-ismember" type="checkbox" disabled="disabled" {% if authuser.is_member %} checked="checked" {% endif %}>
<label class="form-check-label" for="settings-myaccount-ismember">Member</label> <label class="form-check-label" for="settings-myaccount-ismember">Member</label>
</div> </div>
</div>
<div class="col">
<div class="form-check"> <div class="form-check">
<input class="form-check-input" id="settings-myaccount-isadmin" type="checkbox" disabled="disabled" {% if authuser.is_admin %} checked="checked" {% endif %}/> <input class="form-check-input" id="settings-myaccount-isadmin" type="checkbox" disabled="disabled" {% if authuser.is_admin %} checked="checked" {% endif %}>
<label class="form-check-label" for="settings-myaccount-isadmin">Admin</label> <label class="form-check-label" for="settings-myaccount-isadmin">Admin</label>
</div> </div>
</div>
<div class="col">
<div class="form-check"> <div class="form-check">
<input class="form-check-input" id="settings-myaccount-logout-after-purchase" type="checkbox" name="logout_after_purchase" {% if authuser.logout_after_purchase %} checked="checked" {% endif %}/> <input class="form-check-input" id="settings-myaccount-logout-after-purchase" type="checkbox" name="logout_after_purchase" {% if authuser.logout_after_purchase %} checked="checked" {% endif %}>
<label class="form-check-label" for="settings-myaccount-logout-after-purchase">Logout after purchase</label> <label class="form-check-label" for="settings-myaccount-logout-after-purchase">Logout after purchase</label>
</div> </div>
</div>
<input class="btn btn-primary" type="submit" value="Save changes" /> </div>
<div class="row g-2">
<div class="col">
<input class="btn btn-primary" type="submit" value="Save changes">
</div>
</div>
</form> </form>
<h2>Avatar</h2> <h2>Avatar</h2>