Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633168 Views

Latest files of /cody/atherosai/ui/login-01

password.svg cody/atherosai/ui/login-01/password.svg
173 Views
0 Comments
Media file
astronaut.jpg cody/atherosai/ui/login-01/astronaut.jpg
129 Views
0 Comments
Media file
email.svg cody/atherosai/ui/login-01/email.svg
142 Views
0 Comments
Media file
style.css cody/atherosai/ui/login-01/style.css
98 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

:root {
--primary: #DD946F ;
--primary-hover: #CD7D7C;
--secondary: #EFD0F8;
--secondary-hover: #B8A1D9;
--aura: #9265CA80;
universe.jpg cody/atherosai/ui/login-01/universe.jpg
99 Views
0 Comments
Media file
index.html cody/atherosai/ui/login-01/index.html
347 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login 01</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
script.js cody/atherosai/ui/login-01/script.js
163 Views
0 Comments
let loginForm = document.querySelector(".my-form");

loginForm.addEventListener("submit", (e) => {
e.preventDefault();
let email = document.getElementById("email");
let password = document.getElementById("password");

console.log('Email:', email.value);