Added doctypes and portal pages
diff --git a/erpnext/www/book-appointment/1.html b/erpnext/www/book-appointment/1.html
new file mode 100644
index 0000000..db4ef26
--- /dev/null
+++ b/erpnext/www/book-appointment/1.html
@@ -0,0 +1,31 @@
+{% extends "templates/web.html" %}
+
+{% block title %}{{ _("Book Appointment") }}{% endblock %}
+
+{% block page_content %}
+<div class="container">
+    <!-- title: Book an appointment -->
+    <div class="text-center mb-5">
+        <h3>Book an appointment</h3>
+        <h4>Select the date and your timezone</h4>
+    </div>
+    <div class="row justify-content-center mt-3">
+        <div class="col-md-4 align-self-center ">
+            <form name="myform">
+                <input type="date" name="appointment-date" id="appointment-date" class="form-control mt-3" min="{{ from_date }}" max="{{ to_date }}">
+                <select name="appointment-timezone" id="appointment-timezone" class="form-control mt-3">
+                    {% if timezones %}
+                        {% for timezone in timezones%}
+                            <option value="{{timezone.offset}}">{{timezone.timezone_name}}</option>
+                        {% endfor %}
+                    {% endif %}
+                </select>
+            </form>
+            <button class="form-control mt-3 btn btn-dark" id="next-button" onclick="next()">
+                Next
+            </button>
+        </div>
+    </div>
+</div>
+
+{% endblock %}
\ No newline at end of file