add form of selection
This commit is contained in:
parent
6d138ed9b7
commit
93be13ccd1
12 changed files with 92 additions and 13 deletions
|
@ -2,12 +2,35 @@
|
|||
{% block title %} Home Manager {% endblock title%}
|
||||
{% block content %}
|
||||
|
||||
<style>
|
||||
img {
|
||||
max-width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
</style>
|
||||
|
||||
{% if user.is_authenticated %}
|
||||
<div class="jumbotron">
|
||||
<h1 class="display-4">Welcome {{ user.username }}</h1>
|
||||
<div class="jumbotron">
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<ul class="list-group">
|
||||
{{ form.as_ul }}
|
||||
</ul>
|
||||
<input class="btn btn-primary btn-lg" type="submit" value="Enable">
|
||||
</form>
|
||||
</div>
|
||||
<div class="jumbotron">
|
||||
{% load static %}
|
||||
<img src="{% static image %}" alt="My image">
|
||||
</div>
|
||||
{% else %}
|
||||
<p>You are not logged in</p>
|
||||
<a href="{% url 'login' %}">Log In</a>
|
||||
<div class="jumbotron">
|
||||
<p class="lead">You are not logged in</p>
|
||||
<p class="lead">
|
||||
<a class="btn btn-primary btn-lg" href="{% url 'login' %}" role="button">Log In</a>
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue