๐Ÿ˜Ž ๊ณต๋ถ€ํ•˜๋Š” ์ง•์ง•์•ŒํŒŒ์นด๋Š” ์ฒ˜์Œ์ด์ง€?

[PHP Project - 1] SignUp Form HTML ๋ณธ๋ฌธ

๐Ÿ‘ฉ‍๐Ÿ’ป ๋ฐฑ์—”๋“œ(Back-End)

[PHP Project - 1] SignUp Form HTML

์ง•์ง•์•ŒํŒŒ์นด 2023. 8. 20. 23:45
728x90
๋ฐ˜์‘ํ˜•

 

<๋ณธ ๋ธ”๋กœ๊ทธ๋Š” Dave Hollingworth ๋‹˜์˜ ์œ ํŠœ๋ธŒ๋ฅผ ์ฐธ๊ณ ํ•ด์„œ ๊ณต๋ถ€ํ•˜๋ฉฐ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค :-)>

=> Signup and Login with PHP and MySQL

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Signup</title>
</head>
<body>
    <h1>Signup</h1>

    <form action="process-signup.php" method="post" novalidate>
        <div>
            <label for = "name">Name</label>
            <input type = "text" id = "name" name = "name">
        </div>

        <div>
            <label for = "email">Email</label>
            <input type = "email" id = "email" name = "name">
        </div>

        <div>
            <label for = "password">Password</label>
            <input type = "password" id = "password" name = "password">
        </div>

        <div>
            <label for = "password_confirmation">Repeat password</label>
            <input type = "password" id = "password_confirmation" name = "password_confirmation">
        </div>

        <button>Sign up</button>
    </form>
</body>
</html>

728x90
๋ฐ˜์‘ํ˜•
Comments