Tell us what’s happening:
I think my code satisfies all the user stories for this challenge, but it isn’t accepting the submit input for the email form (at the bottom). Please tell me if my code is flawed and that’s why it’s not passing the tests, or at least give me a hint to send me in the right direction if I am writing the code incorrectly. I am at my wit’s end and finally decided to cry out for help. Thanks in advance!
Your code so far
Wasabi Wallet landing page nav { position: fixed; top: 0; width: 100%; background-color: green; } a {
color: yellow;
}
#header-img {
padding: 3px;
display: inline-block;
}
h1,
h2, h3{
color: green;
text-align: center;
}
.labels {
color: green;
}
#features-list, #reasons-list {
color: green;
display: inline-flex;
}
.navbar {
padding: 3px;
}
.nav-link {
background-color: green;
}
@media only screen and (max-width: 600px) {
body {
background-color: yellow;
}
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<nav id="nav-bar" class="navbar">
<a class="nav-link" href="#features">Features</a> |
<a class="nav-link" href="#why_wasabi">Why should you Wasabi?</a> |
<a class="nav-link" href="#download">Download Wasabi</a> |
<a class="nav-link" href="#top">Top of page</a> |
</nav>
<div style="text-align: left;">
<image id="header-img" alt="wasabi-logo" src="https://cdn-images-1.medium.com/max/1600/0*znD3AT3aue70a0QE.png"></image>
</div>
</header>
<body>
<div id="top"></div>
<h1>Wasabi Wallet: Privacy focused, ZeroLink compliant Bitcoin wallet</h1>
<div style="text-align: center;">
<label id="video-label" class="labels">A comprehensive overview of Wasabi Wallet</label>
<br>
<iframe id="video" width="640" height="480" src="https://www.youtube.com/watch?v=7yzmYgiXDqc&t=3s"></iframe></div>
<div style="text-align: center;">
<h2 id="features">Wasabi Wallet Features</h2>
</div>
<div id="features-list">
<ul>
<li>It is open source and cross platform, so it works on every desktop architechture: Linux, OSX,
Windows.</li><br>
<li>It is an HD wallet, it uses BIP84 derivation scheme, so it can only generate bech32, native
segregated witness addresses.</li><br>
<li>It has advanced coin control features.</li><br>
<li>This is the only truly light wallet that is already deployed and that does not fail against network
analysis, thus protects your privacy against network observers. We achieve this by implementing a
BIP157–158.</li><br>
<li>The Tor anonymity network is integrated and the wallet cannot be used without it.</li><br>
<li>The wallet implements a trustless Bitcoin mixing technique, called Chaumian CoinJoin and enforces
constant 100 anonymity set. This means waiting for peers may take a long time until liquidity
catches up, no anonymity system used today in any cryptocurrency comes close to this number.</li><br>
<li>Unlike today’s centralized mixers, in Chaumian CoinJoin, the coordinator of the mix cannot steal
your coins, nor deanonymize you.</li><br>
<li>Wasabi only takes a small mixing fee of 0.003%</li><br>
</ul>
<a href="https://medium.com/@nopara73/wasabi-privacy-focused-bitcoin-wallet-for-desktop-3962d567045a" style="color:green">*All
information taken from Nopara73's blog post</a>
</div>
<div style="text-align: center;">
<h2 id="why_wasabi">Why should you use Wasabi Wallet?</h2>
</div>
<div id="reasons-list">
<ul>
<li>Privacy is a fundamental human right</li><br>
<li>Fungibility is an essential property of good money</li><br>
<li>The powers that be are steadily trying to erode our privacy away until we have none at all</li><br>
<li>Personal privacy limits governmental power</li><br>
<li>Privacy allows you to choose what aspects of your personal life are made public</li><br>
<li>Personal financial privacy allows you to safeguard your reputation</li><br>
<li>Financial privacy gives you a wide degree of control over your personal life</li><br>
<li>Privacy saves you from having to explain yourself or justify yourself or your actions</li><br>
<li>Privacy protects your rights to free speech and political activities</li>
</ul>
</div>
<div style="text-align: center;">
<h2 id="download">Download Wasabi Wallet</h2>
</div>
<div id="download-links">
<ul>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiInstaller.msi"
style="color:green">Wasabi-Installer.msi</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiInstaller.msi.asc"
style="color: green">Wasabi-Installer.msi.asc</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiLinux.tar.gz"
style="color: green">Wasabi-Linux.tar.gz</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiLinux.tar.gz.asc"
style="color: green">Wasabi-Linux.tar.gz.asc</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiOsx.tar.gz" style="color: green">Wasabi-Osx.tar.gz</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v0.9.4/WasabiOsx.tar.gz.asc"
style="color: green">Wasabi-Osx.tar.gz.asc</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/archive/v0.9.4.zip" style="color: green">Source
code (zip)</a></li><br>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/archive/v0.9.4.tar.gz" style="color: green">Source
code (tar.gz)</a></li><br>
</ul>
</div>
<div style="text-align: center;">
<h3>Stay informed</h3>
</div>
<div style="text-align: center;">
<form id="form" action="www.freecodecamp.com/email-submit" method="GET" target="_blank">
email:<br>
<input id="email" type="email" placeholder="please enter email"><br>
<div id="submit-button"><br>
<input id="submit" type="submit" value="Submit"></div>
</form>
</div>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0
.
I used google chrome for Codepen, because of the warning they have about other browsers…
Link to the challenge: