-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css" class="">
</head>
<body>
<form action="formhandler.php" method="POST" class="form" enctype="multipart/form-data">
<h1>Create your profile</h1>
<div class="person1"><label>Name: </label> <input type="text" name="person_name" placeholder="name"><br><br></div>
<div class="person1"><label>Email: </label><input type="text" name="email" placeholder="email"><br><br></div>
<div class="person1"><label>Password: </label><input type="text" name="password"></div>
<div class="person1"><label></label>Phone number: <input type="text" name="phone_number" placeholder="phone"><br><br></div>
<div class="person1"><label>Address: </label><input type="text" name="address" placeholder="address"></div>
<label for="profile_pic">Profile Picture:</label>
<input type="file" id="profile_pic" name="profile_pic" accept="image/*" required><br>
<button type="submit">Submit</button>
</form>
</body>
</html>