-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1.35 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Teamable</title>
<link rel="stylesheet" href="style.css" />
<script src="app.js"></script>
<meta charset="utf-8" />
</head>
<body>
<div id="display-view">
<h1>User profile</h1>
<img src="./assets/Premium Vector _ Hipster man mascot logo.jfif">
<span>Name: </span><b id="name">Vandit Bera</b>
<hr />
<span>Email: </span><b id="email">[email protected]</b>
<hr />
<span>Interests: </span><b id="interests">Coding</b>
<hr />
<button onclick="handleEditProfile()">Edit Profile</button>
</div>
<div id="edit-view">
<h1>User profile</h1>
<img src="./assets/Premium Vector _ Hipster man mascot logo.jfif">
<span>Name: </span>
<input type="text" id="input-name" placeholder="Anna Smith"/>
<hr />
<span>Email: </span>
<input type="text" id="input-email" placeholder="[email protected]" />
<hr />
<span>Interests: </span>
<input type="text" id="input-interests" placeholder="coding" />
<hr />
<button onclick="handleUpdateProfile()">Update Profile</button>
</div>
</body>
</html>