-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
82 lines (46 loc) · 1.12 KB
/
profile.html
File metadata and controls
82 lines (46 loc) · 1.12 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<body style="background-color:powderblue;">
<h1 style="Color:Red"><u>Sign up here!!</u></h1>
<h2 style="Color:Blue"><u>Answer all fields please!
</u></h2>
<form enctype ='application/json' action="http://localhost:5000/profile" method="post">
<div>
<label for="name">First name: </label>
<input type="text" id="uname" name="name">
</div>
<div>
</div>
<div>
<label for="lname">Last name: </label>
<input type="text" id="ulname" name="lname">
</div>
<div>
</div>
<div>
<label for="Cage">Current age: </label>
<input type="text" id="age" name="age">
</div>
<div>
</div>
<div>
<label for="mail">email: </label>
<input type="text" id="umail" name="mail">
</div>
<div>
</div>
<div>
<label for="username">Create usernmae: </label>
<input type="text" id="username" name="cusername">
</div>
<div>
</div>
<div>
<label for="password">Create password: </label>
<input type="text" id="password" name="cpassword">
</div>
<div>
</div>
<input type="submit" value="submit">
</form>
</body>
</html>