ngx-admin/docs/app/pages/home/contact-section/contact-section.component.html
2020-09-08 11:03:46 +03:00

50 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<ngx-landing-section-title>
Stay tuned
</ngx-landing-section-title>
<p class="description">
Subscribe to get notified about new versions of ngx-admin and other cool projects that we are working on
</p>
<div class="sending-block">
<form id="email-form"
#contactForm
class="email-form"
action="https://akveo.us19.list-manage.com/subscribe/post?u=e8ac0871a095839ba14553eff&amp;id=cd45c56765"
method="post"
target="_blank"
novalidate>
<label for="email">Your Email</label>
<input id="email"
#emailInput
type="email"
name="EMAIL"
class="email"
[class.invalid]="invalid"
placeholder="johndoe@gmail.com"
required>
<input class="submit-input"
type="button"
value="Subscribe"
name="subscribe"
(click)="submitForm()"
[attr.disabled]="disabledControl">
</form>
<div class="agreement-block">
<nb-checkbox [(ngModel)]="isAgree" status="success">
<p class="agreement">
<span class="highlight">I agree</span> to get news on whats going on around Akveo products and community.<br />
The administrator processes data following <a class="active" href="https://www.akveo.com/privacy-policy?utm_source=ngx_admin_landing&utm_medium=contact_section" target="_blank">the Privacy Policy</a>. I understand that I can opt out at any time
</p>
</nb-checkbox>
</div>
<div class="separator">
<div>or</div>
</div>
<div class="contact-us-container">
<a class="contact-us"
href="https://www.akveo.com/contact?utm_campaign=services%20-%20contacts%20-%20ngx_admin%20docs&utm_source=ngx_admin&utm_medium=referral&utm_content=landind_contact_section">Contact Us</a>
</div>
</div>