Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633131 Views

Latest files of /cody/atherosai/ui/signup-03

assets/ cody/atherosai/ui/signup-03/assets/
6 Items
  • apple.png
  • password.svg
  • email.svg
  • mock.png
  • logo.png
  • google.png
  • index_socials.html cody/atherosai/ui/signup-03/index_socials.html
    270 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <title>Signup Example</title>
    <link rel="stylesheet" href="style.css">
    </head>
    style.css cody/atherosai/ui/signup-03/style.css
    101 Views
    0 Comments
    @import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

    :root {
    --primary: #4978F0;
    --primary-light: #E1EEF5;
    --secondary: #1D1D1D;
    --background: #F4F1FF;
    --text: #1F2346;
    index.html cody/atherosai/ui/signup-03/index.html
    352 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <title>Signup Example</title>
    <link rel="stylesheet" href="style.css">
    </head>
    script.js cody/atherosai/ui/signup-03/script.js
    163 Views
    0 Comments
    let signupForm = document.querySelector(".my-form");
    let email = document.getElementById("email");
    let password = document.getElementById("password");
    let confirmPassword = document.getElementById("confirm-password");

    signupForm.addEventListener("submit", (e) => {
    e.preventDefault();