diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:08:27 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:08:27 +0200 |
| commit | c9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (patch) | |
| tree | 3e4f42f93c7ae89a364e4d51fff6e5cec4e55fa9 /rushs/eplace/src/components/students | |
add: graphs et rushs
Diffstat (limited to 'rushs/eplace/src/components/students')
| -rw-r--r-- | rushs/eplace/src/components/students/update.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/rushs/eplace/src/components/students/update.html b/rushs/eplace/src/components/students/update.html new file mode 100644 index 0000000..912526e --- /dev/null +++ b/rushs/eplace/src/components/students/update.html @@ -0,0 +1,31 @@ +<div class="FormOverlay"> + <form class="StylisedForm" id="student-update-form"> + <div class="FormHeader"> + <h2 class="FormTitle">Update Profile</h2> + </div> + <div class="FormItem"> + <label for="avatar-url" class="FormLabel">Avatar URL</label> + <input + type="" + class="FormInput" + id="avatar-url" + name="avatar-url" + placeholder="Enter avatar URL" + /> + </div> + <div class="FormItem"> + <label for="quote" class="FormLabel">Quote</label> + <input + type="text" + class="FormInput" + id="quote" + name="quote" + placeholder="Enter a quote" + /> + </div> + <div class="FormButtons"> + <button type="button" id="close-modal">Cancel</button> + <button type="submit">Submit</button> + </div> + </form> +</div> |
