26 lines
818 B
HTML
26 lines
818 B
HTML
</section>
|
|
<section>
|
|
<form id='sform' method='get' action='https://kagi.com/search'>
|
|
<input type='text' id='search' name='q' placeholder='Search' autocomplete='off'>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const s = document.getElementById('search');
|
|
document.getElementById('sform').addEventListener('submit', (e) => {
|
|
let term = s.value;
|
|
if (/^[^\s]+\.(com|net|org|ca|us|io|ai|cr|gov)(\/[^\s]*)?$/.test(term)) {
|
|
e.preventDefault();
|
|
if (!/^https?:\/\//.test(term)) {
|
|
term = 'https://' + term;
|
|
}
|
|
window.location.replace(term);
|
|
}
|
|
});
|
|
s.focus();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|