You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.7 KiB
60 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Custom template to include the Subscribe Section on Landing Page -->
|
|
<template id="subscribe" inherit_id="website.snippets" name="Subscribe">
|
|
<xpath expr="//div[@id='snippet_feature']/div[hasclass('o_panel_body')]"
|
|
position="inside">
|
|
<t t-snippet="theme_diva.diva_subscribe"
|
|
t-thumbnail="/theme_diva/static/src/images/snippets/landing/subscribe.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
<!-- Custom template for the Landing Page Subscribe Section -->
|
|
<template id="diva_subscribe" name="Landing Subscribe">
|
|
<section class="land_subscribe theme1">
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-5 col-12">
|
|
<div class="sub_head">
|
|
SUBSCRIBE UP FOR OUR
|
|
NEWSLETTER
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-5 col-md-8 col-12">
|
|
<form class="sub">
|
|
<input id="textEmail"
|
|
class="form-control form-control-sm mr-3"
|
|
aria-label="Search"
|
|
placeholder="EMAIL ADDRESS"/>
|
|
<a type="button"
|
|
class="enter">
|
|
Submit
|
|
</a>
|
|
</form>
|
|
</div>
|
|
<div class="col-lg-2 col-md-4 col-12">
|
|
<form action="#"
|
|
class="payment">
|
|
<label class="c1">Subscribe
|
|
<input type="radio"
|
|
checked="checked"
|
|
name="radio"/>
|
|
<span class="checkmark"/>
|
|
</label>
|
|
<label class="c1">Unsubscribe
|
|
<input type="radio"
|
|
name="radio"/>
|
|
<span class="checkmark"/>
|
|
</label>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<p id="demo" class="show_m"
|
|
style="color: red;"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|