2015-06-10 21:34:33 +00:00
{% extends "digitalglarus/base.html" %}
2015-05-02 20:02:19 +00:00
{% block title %}Contact{% endblock %}
{% block content %}
< div class = "row" >
< div class = "box" >
< div class = "col-lg-12" >
< hr >
< h2 class = "intro-text text-center" > Contact
2015-07-20 20:58:49 +00:00
< strong > DIGITAL GLARUS< / strong >
2015-05-02 20:02:19 +00:00
< / h2 >
< hr >
< / div >
< div class = "col-md-8" >
<!-- Embedded Google Map using an iframe - to select your location find it on Google maps and paste the link as the iframe src. If you want to use the Google Maps API instead then have at it! -->
2015-09-30 18:24:00 +00:00
< iframe width = "100%" height = "400" frameborder = "0" scrolling = "no" marginheight = "0" marginwidth = "0" src = "//maps.google.com/maps?hl=en&ie=UTF8&ll=46.969959,9.039001&spn=56.506174,79.013672&t=m&z=12&output=embed" > < / iframe >
2015-05-02 20:02:19 +00:00
< / div >
< div class = "col-md-4" >
< p > Phone:
< strong > +41 (0) 44 534 66 22< / strong >
< / p >
< p > Email:
2015-07-20 20:58:49 +00:00
< strong > < a href = "mailto:digitalglarus@ungleich.ch" > digitalglarus@ungleich.ch< / a > < / strong >
2015-05-02 20:02:19 +00:00
< / p >
< p > Address:
< strong > Hauptstrasse 14, 8775 Luchsingen< br >
< / strong > < / p >
< / div >
< div class = "clearfix" > < / div >
< / div >
< / div >
< div class = "row" >
< div class = "box" >
< div class = "col-lg-12" >
< hr >
< h2 class = "intro-text text-center" > Contact
< strong > form< / strong >
< / h2 >
< hr >
< p > If you want further information on Digital Glarus, please send us a message using the form below.< / p >
2015-06-10 21:34:33 +00:00
< form action = "{% url 'digitalglarus:contact' %}" method = "post" role = "form" >
2015-05-02 20:42:08 +00:00
{% csrf_token %}
2015-05-02 20:02:19 +00:00
< div class = "row" >
2015-05-02 20:42:08 +00:00
< div class = "form-group col-lg-4" >
2015-05-02 20:02:19 +00:00
< label > Name< / label >
2015-05-02 20:42:08 +00:00
< input type = "text" class = "form-control" name = "name" >
2015-05-02 20:02:19 +00:00
< / div >
< div class = "form-group col-lg-4" >
< label > Email Address< / label >
2015-05-02 20:42:08 +00:00
< input type = "email" class = "form-control" name = "email" >
2015-05-02 20:02:19 +00:00
< / div >
< div class = "form-group col-lg-4" >
< label > Phone Number< / label >
2015-05-02 20:42:08 +00:00
< input type = "tel" class = "form-control" name = "phone_number" >
2015-05-02 20:02:19 +00:00
< / div >
< div class = "clearfix" > < / div >
< div class = "form-group col-lg-12" >
< label > Message< / label >
2015-05-02 20:42:08 +00:00
< textarea class = "form-control" rows = "6" name = "message" > < / textarea >
2015-05-02 20:02:19 +00:00
< / div >
< div class = "form-group col-lg-12" >
< input type = "hidden" name = "save" value = "contact" >
< button type = "submit" class = "btn btn-default" > Submit< / button >
2015-05-02 20:42:08 +00:00
< / div >
2015-05-02 20:02:19 +00:00
< / div >
< / form >
< / div >
< / div >
< / div >
< / div >
<!-- /.container -->
{% endblock %}