Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633151 Views

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

assets/ cody/atherosai/ui/login-02/assets/
6 Items
  • apple.png
  • password.svg
  • email.svg
  • mock.png
  • logo.png
  • google.png
  • style.css cody/atherosai/ui/login-02/style.css
    85 Views
    0 Comments


    @import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

    :root {
    --primary: #4978F0;
    --primary-light: #E1EEF5;
    --secondary: #1D1D1D;
    index.html cody/atherosai/ui/login-02/index.html
    338 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Login Example</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    </head>
    script.js cody/atherosai/ui/login-02/script.js
    155 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);