Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
12 views2 pages

Index

Uploaded by

saidssan340
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views2 pages

Index

Uploaded by

saidssan340
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Index.

html

<!DOCTYPE html>

<html>

<head>

<title>Registration Page</title>

<link rel="stylesheet"

type="text/css"

href="style.css">

</head>

<body>

<div class="container">

<h1>Registration Page</h1>

<form method="post" action="register.php">

<label for="name">

Name:

</label>

<input type="text"

id="name"

name="name" required>

<label for="username">

Username:

</label>

<input type="text"

id="username"

name="username" required>
<label for="email">Email:</label>

<input type="email"

id="email"

name="email" required>

<label for="password">Password:</label>

<input type="password"

id="password"

name="password" required>

<input type="submit"

value="Register">

</form>

<p> Already have an account?</p>

<a href="login.html">Click Here</a>

</div>

<br>

</body>

</html>

You might also like