From 977a9ef636a040731050be0cc46e3c9a27661a0c Mon Sep 17 00:00:00 2001 From: ryan smith Date: Thu, 7 Nov 2024 13:48:26 -0800 Subject: [PATCH] add instructions for signing up --- src/_layout.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/_layout.html b/src/_layout.html index 21def78..2f04f42 100644 --- a/src/_layout.html +++ b/src/_layout.html @@ -173,6 +173,7 @@ border: 2px solid green; } .option { + cursor: pointer; width: 100%; border: 1px solid gray; box-sizing: border-box; @@ -404,7 +405,11 @@

Dedicated

Get Started

-

Sign up for an account and start making queries today!

+

+ Start building queries for free (rate limited to 5 per minute) on the Query Page. Next you can turn + your queries into API requests and use your account's API key for production grade access. +

+

Sign up for an account and start making queries today!

@@ -549,6 +554,11 @@

Get Started

} document.addEventListener("DOMContentLoaded", function () { + document.querySelectorAll(".option").forEach((div) => { + div.addEventListener("click", (event) => { + window.location.href = "https://www.indexsupply.net/login"; + }); + }); document.querySelector("#submit-query input").addEventListener("click", (event) => { document.querySelector("#live .query").value = document.querySelector("#simple .query").value; document.querySelector("#live .events").value = document.querySelector("#simple .events").value;