-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskill-form.html
30 lines (28 loc) · 1.1 KB
/
skill-form.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
{% extends 'base.html' %}
{% block content %}
<!-- Main Section -->
<main class="formPage my-xl">
<div class="content-box">
<div class="formWrapper">
<a class="backButton" href="{% url 'myprofile' request.user.username %}"><i class="im im-angle-left"></i></a>
<br>
<form class="form" method="POST">{% csrf_token %}
<!-- Input:Text -->
<div class="form__field">
{{ form.name }}
</div>
<div class="form__field">
{{ form.description }}
</div>
<div class="form__field">
{{ form.level }}
</div>
<div class="form__field">
{{ form.is_softskill }} {{ form.is_softskill.help_text }}
</div>
<input class="btn btn--sub btn--lg my-md" type="submit" value="Submit" />
</form>
</div>
</div>
</main>
{% endblock content %}