-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-profile.html
75 lines (71 loc) · 3.1 KB
/
edit-profile.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{% extends "base.html" %}
{% load static %}
{% block content %}
<!--
This example requires some changes to your config:
```
// tailwind.config.js
module.exports = {
// ...
plugins: [
// ...
require('@tailwindcss/forms'),
],
}
```
-->
<div class='text-center'>
<img class="signup-img" width='100px' src="{% static "images/admin.png" %}" alt="student">
<img class="signup-img" width='100px' src="{% static "images/organisation.png" %}" alt="staff">
<img class="signup-img" width='100px' src="{% static "images/student.png" %}" alt="admin">
</div>
<form class="row g-3 signup-container my-3 px-5 py-3 mx-auto">
<div class="col-md-8">
<label for="inputEmail4" class="form-label text-sm font-medium leading-6 text-gray-900">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="username" class="form-label text-sm font-medium leading-6 text-gray-900">Username</label>
{% comment %} <span class="flex select-none items-center pl-3 text-gray-500 sm:text-sm">user/</span> {% endcomment %}
<input type="text" name="username" id="username" autocomplete="username" class="form-control" placeholder="janesmith">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label text-sm font-medium leading-6 text-gray-900">Password</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label text-sm font-medium leading-6 text-gray-900">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label text-sm font-medium leading-6 text-gray-900">Address 2</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor">
</div>
<div class="col-md-6">
<label for="inputCity" class="form-label text-sm font-medium leading-6 text-gray-900">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="col-md-4">
<label for="inputState" class="form-label text-sm font-medium leading-6 text-gray-900">State</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="col-md-2">
<label for="inputZip" class="form-label text-sm font-medium leading-6 text-gray-900">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label text-sm font-medium leading-6 text-gray-900" for="gridCheck">
Check me out
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary text-sm font-medium leading-6 text-gray-900">Sign in</button>
</div>
</form>
{% endblock %}