Skip to content

Commit

Permalink
update contact us
Browse files Browse the repository at this point in the history
  • Loading branch information
stiemsdev committed Feb 28, 2024
1 parent 9d2f35e commit 4e417be
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ h1 span {

.contact input,
.contact textarea {
padding-left: 20px;
width: 100%;
margin: 0 auto;
border: 1px solid #3EAAFE;
Expand Down Expand Up @@ -486,6 +487,7 @@ h1 span {
width: 100%;
font-size: 20px;
padding: auto;
height: 50px;
}

.logo {
Expand Down
Binary file added img/contactUs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@

<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(); document.body.style.overflow = 'hidden';"> -->
<img src="img/ownables-logo.png" alt="Ownables Logo" class="logo">
</div>
<div class="header__actions">
<a href="https://discord.gg/JGHzqr334F"><span>Join Discord</span></a>
<div class="header__actions__social">
<a href="https://discord.gg/JGHzqr334F" target="_blank" rel="nofollow"><img src="img/discord.svg" alt="Discord Logo"></a>
<a href="https://twitter.com/myownables" target="_blank" rel="nofollow"><img src="img/x.svg" alt="X Logo"></a>
<a href="https://github.com/ltonetwork" target="_blank" rel="nofollow"><img src="img/github.svg" alt="GitHub Logo"></a>
<a><img src="img/contactUs.png" alt="contact" onclick="openDialog()"></a>
</div>
</div>
</header>
Expand All @@ -47,8 +47,9 @@ <h1>
Contact Us
</h1>
<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="access_key" value="06560c56-4fa0-446d-a9e1-762f64dfac2b" /> -->
<input type="hidden" name="access_key" value="f75c47da-58b9-47c7-975c-30d0f09904bd" />
<input type="hidden" name="subject" value="New Submission from Ownables.info" />
<input type="hidden" name="redirect" value="https://web3forms.com/success" />
<input type="checkbox" name="botcheck" id="" style="display: none;" />
<div>
Expand Down Expand Up @@ -97,7 +98,7 @@ <h2>Power Up your NFTs</h2>
</div>

<h2>SDK now available</h2>

<div class="sdk-section">
<div class="sdk-section__text">
<p>Ownables change the game.</p>
Expand Down
5 changes: 3 additions & 2 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ form.addEventListener("submit", function (e) {
form.reset();
setTimeout(() => {
result.style.display = "none";
dialog.style.display = "none";
document.body.style.overflow = 'auto';
dialog.style.display = "none";
overlay.classList.remove("visible");
// document.body.style.overflow = 'auto';
}, 1000);
});
});

0 comments on commit 4e417be

Please sign in to comment.