-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofileview.html
More file actions
77 lines (43 loc) · 1.08 KB
/
profileview.html
File metadata and controls
77 lines (43 loc) · 1.08 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
<html>
<body style="background-color:powderblue;">
<h1 style="Color:Red"><u>Look at you profile here</u></h1>
<h2 style="Color:Blue"><u>Profile viewing
</u></h2>
<div>
<label for="name">First name: </label>
<B type="text" id="uname" name="name"> {{profile.name}} </B>
</div>
<div>
</div>
<div>
<label for="lname">Last name: </label>
<B type="text" id="ulname" name="lname"> {{profile.lname}} </B>
</div>
<div>
</div>
<div>
<label for="Cage">Current age: </label>
<B <input type="text" id="age" name="age"> {{profile.age}} </B>
</div>
<div>
</div>
<div>
<label for="mail">email: </label>
<B type="text" id="umail" name="mail"> {{profile.mail}}</B>
</div>
<div>
</div>
<div>
<label for="username">Usernmae: </label>
<B type="text" id="username" name="cusername"> {{profile.cusername}}</B>
</div>
<div>
</div>
<div>
<label for="password">Password: </label>
<B type="text" id="password" name="cpassword"> {{profile.cpassword}}</B>
</div>
<div>
</div>
</body>
</html>