fix issues related to school year
Tests / PHPUnit (push) Failing after 34s

This commit is contained in:
root
2026-07-31 18:52:25 -04:00
parent 8d7ee3b9fc
commit 09ea144bb2
23 changed files with 537 additions and 218 deletions
-13
View File
@@ -21,19 +21,6 @@
<label>Phone Number</label>
<input type="tel" name="phone" class="form-control" value="<?= esc($user['phone'] ?? '') ?>" placeholder="Enter phone number">
</div>
<!--
<div class="mb-3">
<label>Role</label>
<select name="role_id" class="form-control" required>
<?php foreach ($roles as $role): ?>
<option value="<?= $role['id'] ?>" <?= $roleId == $role['id'] ? 'selected' : '' ?>>
<?= esc($role['name']) ?>
</option>
<?php endforeach ?>
</select>
</div>
-->
<button type="submit" class="btn btn-primary">Update</button>
</form>
</div>