blob: b627a0c9cf781d4e48023bf554597ac5510142c9 [file] [log] [blame]
pranav nachnekar7b9e3092019-08-28 16:57:37 +05301{% extends "templates/web.html" %}
2
3{% block title %}{{ _("Book Appointment") }}{% endblock %}
4
5{% block page_content %}
6<div class="container">
7
8 <div class="text-center mb-5">
9 <h3>Add details</h3>
10 <h4>Selected date is {{ date }} at {{ time }}</h4>
11 </div>
12 <div class="row justify-content-center mt-3">
13 <div class="col-md-4 align-items-center">
14 <input class="form-control mt-3" type="text" name="customer_name" id="customer_name" placeholder="Your Name" required>
15 <input class="form-control mt-3" type="tel" name="customer_number" id="customer_number" placeholder="Contact Number" required>
16 <input class="form-control mt-3" type="text" name="customer_skype" id="customer_skype" placeholder="Skype" required>
17 <textarea class="form-control mt-3" name="customer_notes" id="customer_notes" cols="30" rows="10" placeholder="Notes"></textarea>
18 <button class="btn btn-primary form-control mt-3" onclick="submit()">Submit</button>
19 </div>
20 </div>
21</div>
22{% endblock %}