update add user with profile image upload and first draft of profile updating

This commit is contained in:
2025-01-03 15:32:59 +00:00
parent edfe6936f5
commit fe47746c1f
2 changed files with 55 additions and 0 deletions

View File

@ -83,6 +83,10 @@
<label for='user_form_rate' class='form-label'>Rate</label>
<input type='number' name='{{ field_name(form.rate) }}' id='user_form_rate' class='form-control' min='0' step='0.01'/>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='user_form_file' class='form-label'>Profile Image</label>
<input type='file' name='{{ field_name(form.imageName) }}' id='user_form_file' class='form-control'/>
</div>
<div class="text-center">
<button type="submit" class="btn btn-lg bg-gradient-dark btn-lg w-100 mt-4 mb-0">Add User</button>