-
Notifications
You must be signed in to change notification settings - Fork 2
/
editprofile.html
99 lines (85 loc) · 2.28 KB
/
editprofile.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/screen.css" media="screen, projection">
<title>Edit Profile</title>
</head>
<body class="edit-profile">
<div class="wrapper">
<h1>{Student Name}</h1>
<form action="viewprofile.html">
<fieldset>
<legend>Edit Profile</legend>
<div class="column">
<label class="field">
<span class="label-text">Name</span>
<input name="name">
</label>
<label class="field">
<span class="label-text">Email</span>
<input type="email" name="email">
</label>
<label class="field">
<span class="label-text">Age</span>
<input name="age">
</label>
<label class="field">
<span class="label-text">Native Language</span>
<select>
<option>English</option>
<option>Spanish</option>
</select>
</label>
<label class="field">
<span class="label-text">Learning Language</span>
<select>
<option>Spanish</option>
<option>English</option>
</select>
</label>
</div>
<div class="column">
<label class="field">
<span class="label-text">Country</span>
<input name="country">
</label>
<label class="field">
<span class="label-text">City</span>
<input name="city">
</label>
<label class="field">
<span class="label-text">School</span>
<input name="school">
</label>
<label class="field">
<span class="label-text">Teacher</span>
<input name="teacher">
</label>
<label class="field">
<span class="label-text">Grade</span>
<input name="grade">
</label>
</div>
<div class="column">
<label class="field">
<span class="label-text">Interests</span>
<textarea name="interests"></textarea>
</label>
<label class="field">
<span class="label-text">Activities</span>
<textarea name="interests"></textarea>
</label>
<label class="field">
<span class="label-text">Favorite Music</span>
<textarea name="interests"></textarea>
</label>
</div>
<div class="field submit">
<input type="submit" value="Save">
</div>
</fieldset>
</form>
</div>
</body>
</html>