We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a91e773 commit dd90639Copy full SHA for dd90639
src/content/docs/index.mdx
@@ -52,7 +52,13 @@ We will use your email to send updates about Digital Design Nizam. Unsubscribe a
52
53
<form id="subscribe-form" class="flex gap-4">
54
<input type="email" name="email" placeholder="Email" required class="border p-2 min-w-96" />
55
- <button type="submit" class="bg-secondary text-white cursor-pointer p-2 px-4">Subscribe</button>
+<button
56
+ type="submit"
57
+ class="bg-secondary text-white cursor-pointer p-2 px-4"
58
+ onclick="this.innerHTML='Subscribing...'; setTimeout(() => { this.innerHTML='Subscribe'; }, 5000);"
59
+>
60
+ Subscribe
61
+</button>
62
</form>
63
64
<script src="form.js"></script>
0 commit comments