-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile_display.html
More file actions
37 lines (28 loc) · 1.05 KB
/
profile_display.html
File metadata and controls
37 lines (28 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sign Up Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <form class="signup-form" action="/register" method="post">-->
<form class="signup-form" action="display.php" method="post">
<!-- form header -->
<div class="form-header">
<h1>Profile</h1>
</div>
<!-- form body -->
<div class="form-body">
<!-- User Name and Password-->
<div class="form-group">
<label for="user-id" class="label-title">User id*</label>
<input type="text" name="user_id" id="user_id" class="form-input" placeholder="Enter your User Name" required="required">
</div>
<div class="form-group">
<label for="password" class="label-title">Password *</label>
<input type="password" name="password" id="password" class="form-input" placeholder="Enter your password" required="required">
</div>
</form>
</body>
</html>