email input

This commit is contained in:
Jonas Legion 2021-12-08 17:43:11 +04:00
parent df1907d65c
commit df21c3f664
3 changed files with 33 additions and 5 deletions

View File

@ -2,7 +2,8 @@
{% get_media_prefix as MEDIA_PREFIX %} {% get_media_prefix as MEDIA_PREFIX %}
<div class="section" id="calendrier"> <div class="section" id="calendrier"
style="background-image: url('{% static 'blk-pro/assets/img/dots.png' %}'); background-size: contain;">
<div class="container"> <div class="container">
<div id="contentAreas" class="cd-section"> <div id="contentAreas" class="cd-section">
<div id="tables"> <div id="tables">
@ -60,7 +61,7 @@
<a href="{% url 'show_event' event.slug %}"> <a href="{% url 'show_event' event.slug %}">
<button type="button" rel="tooltip" <button type="button" rel="tooltip"
class="btn btn-warning btn-icon btn-sm "> class="btn btn-warning btn-icon btn-sm ">
<i class="tim-icons icon-cart"></i> <i class="tim-icons icon-spaceship"></i>
</button> </button>
</a> </a>
</td> </td>

View File

@ -38,7 +38,33 @@
<div class="col-lg-6 col-md-12 mx-auto"> <div class="col-lg-6 col-md-12 mx-auto">
<h2 class="title">{{ event.datetime | date:"D d F Y" }} {{ event.datetime | time }}</h2> <h2 class="title">{{ event.datetime | date:"D d F Y" }} {{ event.datetime | time }}</h2>
<p class="description">{{ event.long_description }}</p> <p class="description">{{ event.long_description }}</p>
<br> <div class="space-70"></div>
<h3>Entrez et vérifiez votre email pour reserver</h3>
<div class="row">
<div class="col-sm-12 col-lg-6">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="tim-icons icon-email-85"></i></span>
</div>
<input type="email" class="form-control"
placeholder="Votre email">
</div>
</div>
<div class="col-sm-12 col-lg-6">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="tim-icons icon-email-85"></i></span>
</div>
<input type="email" class="form-control"
placeholder="Vérifiez votre email">
</div>
</div>
</div>
<div class="space-50"></div>
<div class="row pick-size"> <div class="row pick-size">
{% for product in event.products.all %} {% for product in event.products.all %}
@ -46,7 +72,7 @@
{% for price in product.prices.all %} {% for price in product.prices.all %}
<div class="col-lg-4 col-md-6"> <div class="col-lg-4 col-md-6">
<h6>Quantité {{ price.name }} - {{ price.prix }}€</h6> <h6>{{ price.name }} - {{ price.prix }}€</h6>
<div class="input-group"> <div class="input-group">
<div class="input-group-btn"> <div class="input-group-btn">
@ -76,7 +102,7 @@
{% endfor %} {% endfor %}
</div> </div>
<br> <div class="space-50"></div>
<div class="row justify-content-start"> <div class="row justify-content-start">
<button class="btn btn-warning ml-3">Reserver <i class="tim-icons icon-cart"></i> <button class="btn btn-warning ml-3">Reserver <i class="tim-icons icon-cart"></i>
</button> </button>

View File

@ -41,6 +41,7 @@
<img src="{% static 'blk-pro/assets/img/path2.png' %}" class="path shape"> <img src="{% static 'blk-pro/assets/img/path2.png' %}" class="path shape">
{% include 'blk-pro-mvc/events_list.html' %} {% include 'blk-pro-mvc/events_list.html' %}
<!-- END EVENTS LIST--> <!-- END EVENTS LIST-->
<img src="{% static 'blk-pro/assets/img/path3.png' %}" class="path shape">
{% include 'blk-pro-mvc/calendar.html' %} {% include 'blk-pro-mvc/calendar.html' %}