-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
105 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
<body> | ||
<header class="header"> | ||
<div class="header__logo"> | ||
<img src="img/ownables-logo.png" alt="Ownables Logo" class="logo" onclick="openDialog()"> | ||
<img src="img/ownables-logo.png" alt="Ownables Logo" class="logo" onclick="openDialog()"> | ||
<!-- <img src="img/ownables-logo.png" alt="Ownables Logo" class="logo" onclick="openDialog(); document.body.style.overflow = 'hidden';"> --> | ||
</div> | ||
<div class="header__actions"> | ||
<!-- <button onclick="openDialog()">Open Dialog</button> --> | ||
|
@@ -42,43 +43,53 @@ | |
|
||
<main class="main"> | ||
|
||
<dialog max-width="80%" id="dialog"> | ||
<button class="close-button" onclick="openDialog()">X</button> | ||
<!-- <dialog class="modal" max-width="80%" id="dialog"> --> | ||
<dialog class="contact" max-width="80%" id="dialog"> | ||
<a onclick="openDialog()" class="modal__close">+</a> | ||
|
||
<!-- <div id="dialog" style="display: none;"> --> | ||
<div class="flex items-center min-h-screen bg-gray-100 dark:bg-gray-900"> | ||
<!-- <div class="flex items-center min-h-screen bg-gray-100 dark:bg-gray-900"> | ||
<div class="container mx-auto"> | ||
<div class="max-w-md mx-auto my-10 bg-white p-5 rounded-md shadow-sm"> | ||
<div class="text-center"> | ||
<div class="text-center"> --> | ||
<div> | ||
<div> | ||
<div> | ||
<div> | ||
<h1 class="my-3 text-3xl font-semibold text-black dark:text-gray-200"> | ||
Contact Us | ||
</h1> | ||
<p class="text-gray-600 dark:text-gray-400"> | ||
Fill up the form below to send us a message. | ||
</p> | ||
</div> | ||
<div class="m-7"> | ||
<div> | ||
<form action="https://api.web3forms.com/submit" method="POST" id="form"> | ||
<input type="hidden" name="access_key" value="06560c56-4fa0-446d-a9e1-762f64dfac2b" /> | ||
<input type="hidden" name="subject" value="New Submission from Web3Forms" /> | ||
<input type="hidden" name="redirect" value="https://web3forms.com/success" /> | ||
<input type="checkbox" name="botcheck" id="" style="display: none;" /> | ||
<div class="mb-6"> | ||
<label for="name" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Full Name</label> | ||
<input type="text" name="name" id="name" placeholder="John Doe" required class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" /> | ||
<div> | ||
<label for="name">Full Name</label> | ||
<br> | ||
<input type="text" name="name" id="name" placeholder="John Doe" style="background-color:beige; " required/> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="email" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Email Address</label> | ||
<input type="email" name="email" id="email" placeholder="[email protected]" required class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" /> | ||
<br> | ||
<div> | ||
<label for="email">Email Address</label> | ||
<br> | ||
<input type="email" name="email" id="email" placeholder="[email protected]" required/> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="message" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Your Message</label> | ||
|
||
<textarea rows="5" name="message" id="message" placeholder="Your Message" class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" required></textarea> | ||
<br> | ||
<div> | ||
<label for="message">Your Message</label> | ||
<br> | ||
<textarea rows="8" name="message" id="message" placeholder="Your Message" required></textarea> | ||
</div> | ||
<br> | ||
<!-- <div class="h-captcha" data-captcha="true"></div> --> | ||
<div class="h-captcha" data-sitekey="454fa1de-0ee2-419c-a133-8c187ad18d1a" data-callback="enableButton"></div> | ||
<div class="mb-6"> | ||
<button id="submit-button" type="submit" class="w-full px-3 py-4 text-white bg-indigo-700 rounded-md focus:bg-indigo-600 focus:outline-none" disabled> | ||
<div> | ||
<button id="submit-button" type="submit" class="button2"> | ||
Send Message | ||
</button> | ||
</div> | ||
|
@@ -91,6 +102,10 @@ <h1 class="my-3 text-3xl font-semibold text-black dark:text-gray-200"> | |
</div> | ||
</dialog> | ||
|
||
<!-- <div class="h-captcha" data-captcha="true"></div> --> | ||
<!-- <div class="h-captcha" data-sitekey="454fa1de-0ee2-419c-a133-8c187ad18d1a" data-callback="enableButton"></div> --> | ||
|
||
|
||
|
||
<!-- <h1>Ownables are <br>the ultimate <span>DIGITAL ASSET</span></h1> | ||
<a href="https://demo.ownables.info/" class="button">Try Demo</a> | ||
|
@@ -116,6 +131,9 @@ <h1><span>Real World Assets</span>Meet Web3 </h1></p> | |
|
||
<h2>Power Up your NFTs</h2> | ||
<div class="click-row"> | ||
<!-- <a href="javascript:void(0)" class="click-row__item" data-target="modal-0"> | ||
contact us | ||
</a> --> | ||
<a href="javascript:void(0)" class="click-row__item" data-target="modal-1"> | ||
<img src="img/click-item-1.png" alt="Unlockable Content" data-target="modal-1"> | ||
</a> | ||
|
@@ -144,15 +162,49 @@ <h2>SDK now available</h2> | |
</div> | ||
</main> | ||
|
||
|
||
|
||
<div class="modal-wrap"> | ||
<div class="modal" id="modal-0"> | ||
<a href="javascript:void(0)" aria-label="close modal" class="modal__close">+</a> | ||
<h2> Contact Us</h2> | ||
<p class="modal_intro">Fill up the form below to send us a message.</p> | ||
<form action="https://api.web3forms.com/submit" method="POST" id="form"> | ||
<input type="hidden" name="access_key" value="06560c56-4fa0-446d-a9e1-762f64dfac2b" /> | ||
<input type="hidden" name="subject" value="New Submission from Web3Forms" /> | ||
<input type="hidden" name="redirect" value="https://web3forms.com/success" /> | ||
<input type="checkbox" name="botcheck" id="" style="display: none;" /> | ||
<div> | ||
<label for="name" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Full Name</label> | ||
<input type="text" name="name" id="name" placeholder="John Doe" required class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" /> | ||
</div> | ||
<br/> | ||
<div > | ||
<label for="email" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Email Address</label> | ||
<input type="email" name="email" id="email" placeholder="[email protected]" required class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" /> | ||
</div> | ||
<br/> | ||
<div > | ||
<label for="message" class="block mb-2 font-medium text-sm text-gray-600 dark:text-gray-400">Your Message</label> | ||
|
||
<textarea rows="5" name="message" id="message" placeholder="Your Message" class="w-full px-3 py-2 placeholder-gray-300 border border-gray-400 rounded-md focus:outline-none focus:ring focus:ring-indigo-100 focus:border-indigo-500 dark:bg-gray-700 dark:text-white dark:placeholder-gray-500 dark:border-gray-600 dark:focus:ring-gray-900 dark:focus:border-gray-500" required></textarea> | ||
</div> | ||
<div > | ||
<button id="submit-button" type="submit" class="w-full px-3 py-4 text-white bg-indigo-700 rounded-md focus:bg-indigo-600 focus:outline-none"> | ||
Send Message | ||
</button> | ||
</div> | ||
<p class="text-base text-center text-gray-400" id="result"></p> | ||
</form> | ||
</div> | ||
<div class="modal" id="modal-1"> | ||
<a href="javascript:void(0)" aria-label="close modal" class="modal__close">+</a> | ||
<h2>Unlockable Content</h2> | ||
<h3>Real Value</h3> | ||
<p class="modal__intro">Have you ever wondered how you can protect the content of your NFTs from being screenshotted, copied, or used without permission?</p> | ||
<img src="img/modal-placeholder-2.png" class="modal__image" alt="Van Gogh with flower stylized" /> | ||
<p>Ownables bring the concept of Unlockable Content to the NFT space. Using Ownables as your digital collectible platform allows your digital assets to remain private. | ||
</p> | ||
</p> | ||
<ul> | ||
<li>Prevent Copyright Theft</li> | ||
<li>Retain Value</li> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters