29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Lab 7 Levi McLean</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<form method="post" action="action.php">
|
|
<label for="fname">First Name</label>
|
|
<input type="text" name="fname"><br>
|
|
<label for="lname">Last Name</label>
|
|
<input type="text" name="lname"><br>
|
|
<label for="email">Email</label>
|
|
<input type="email" name="email"><br>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password"><br>
|
|
<label for="address">Address</label>
|
|
<input type="text" name="address"><br>
|
|
<label for="city">City</label>
|
|
<input type="text" name="city"><br>
|
|
<label for="country">Country</label>
|
|
<input type="text" name="country"><br>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |