mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
[website] updates for bootstrap3
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
<!-- blog list will be generated dynamically -->
|
||||
</div>
|
||||
<div style="text-align: center;">
|
||||
<button id="next-page" class="btn"
|
||||
<button id="next-page" class="btn btn-default"
|
||||
style="display:none;">More...</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -11,24 +11,28 @@
|
||||
<h3>{{ obj.doc.heading or "Contact Us"}}</h3>
|
||||
<div class="row">
|
||||
<div class="web-form col col-lg-8">
|
||||
<div class="row">
|
||||
<div class="col col-lg-6">
|
||||
<p id="contact-alert" class="alert"
|
||||
style="display: none;"> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<p><select class="col col-lg-6" name="subject">
|
||||
<p id="contact-alert" class="alert"
|
||||
style="display: none;"> </p>
|
||||
<p>
|
||||
<select name="subject">
|
||||
{% for option in obj.query_options %}
|
||||
<option value="{{ option }}">{{ option }}</option>
|
||||
{% endfor %}
|
||||
</select></p>
|
||||
<p><input class="col col-lg-6" name="email" type="text" placeholder="Your Email Address" /></p>
|
||||
<p><textarea class="col col-lg-6" rows="10" name="message"></textarea></p>
|
||||
<p><button class="btn btn-primary btn-send">Send</button></p>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<input name="email" type="text"
|
||||
placeholder="Your Email Address" />
|
||||
</p>
|
||||
<p>
|
||||
<textarea rows="10" name="message"></textarea>
|
||||
</p>
|
||||
<p>
|
||||
<button class="btn btn-primary btn-send">Send</button>
|
||||
</p>
|
||||
</div>
|
||||
{% if obj.doc.address %}
|
||||
<div class="col col-lg-3 alert" style="margin-top: 20px;" itemscope itemtype="http://schema.org/PostalAddress">
|
||||
<div class="col col-lg-3 col-offset-1 alert" style="margin-top: 20px;" itemscope itemtype="http://schema.org/PostalAddress">
|
||||
<h4><i class="icon-map-marker"></i> {{ obj.address.address_title }}</h4>
|
||||
{% if obj.address.address_line1 %}
|
||||
<span itemprop="streetAddress">{{ obj.address.address_line1 }}</span><br>
|
||||
|
||||
Reference in New Issue
Block a user