-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofile.html
More file actions
101 lines (89 loc) · 4.33 KB
/
profile.html
File metadata and controls
101 lines (89 loc) · 4.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/cursor.css"/>
<link rel="stylesheet" href="css/User_profile.css"/>
<!-- Fonts & Logos -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap">
<link rel="icon" type="image/svg" href="resources/logos/favicon.svg">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0">
</head>
<body>
<!-- Navigation bar of the Document -->
<nav>
<ul id="navbar">
<li id="logo" style="float:left"><a href="index.html"><img src="resources/logos/logo.svg" alt="logo"></a></li>
<li><a href="home.html"><span class="material-symbols-rounded">home</span><span class="nav__text">Home</span></a></li>
<li><a href="gallery.html"><span class="material-symbols-rounded">movie</span><span class="nav__text">Gallery</span></a></li>
<li><a href="shop.html"><span class="material-symbols-rounded">shop</span><span class="nav__text">Shop</span></a></li>
<li><a href="profile.html" class="active"><span class="material-symbols-rounded">account_circle</span><span class="nav__text">Profile</span></a></li>
<li><a href="sitemap.html"><span class="material-symbols-rounded">lan</span><span class="nav__text">Sitemap</span></a></li>
<li><a href="feedback.html"><span class="material-symbols-rounded">chat</span><span class="nav__text">Comments</span></a></li>
<li><a href="team.html"><span class="material-symbols-rounded">info</span><span class="nav__text">About Us</span></a></li>
</ul>
</nav>
<div class="cursor rounded move" id="cursor"></div> <!-- Cursor of the Document -->
<div id="profile-output">
<br>
<h2>User Profile</h2>
</div>
<div id="progress-indicator">
<!-- Display progress indicator here -->
<div id="progress-bar"></div>
<span id="progress-percent">0%</span>
</div>
<div id="prompt-container">
<div id="prompt">
<h2 class="question">Questions</h2>
<p id="prompt-description">Enter your First name:</p>
<input type="text" id="input-field" placeholder="Enter your answer">
<button onclick="submitPrompt()">Submit</button>
</div>
</div>
<br><br>
<div id="basic-info">
<!-- Display basic information here -->
<br>
<p>First name: <span id="user-name"></span></p>
<p>Surname: <span id="user-surname"></span></p>
<p>Age: <span id="user-age"></span></p>
<p>Gender: <span id="user-gender"></span></p>
<p>University name: <span id="campus-name"></span></p>
<p>Assignment Type: <span id="user-assignment-type"></span></p>
<p>Degree Level: <span id="user-highest-degree:"></span></p>
<p>Country: <span id="user-country:"></span></p>
<p>Email: <span id="user-email"></span></p>
<p>Contact number: <span id="contact-number"></span></p>
<br>
</div>
<!-- Footer Section of the Document -->
<div id="footer">
<div class="footer__container">
<div class="animate" id="dev">
<a href="subpages/supun-info.html"><img src="resources/images/developers/supun.jpg" alt="Lashen Martino"><span>Supun Gimhana (Contributor)</span></a>
</div>
<div class="footer__container__left">
<h3>Life on Land</h3>
<p>© Life on Land is a collaborative website built by a group of students from IIT - 2024</p>
</div>
<div class="footer__container__right">
<h3>Contact Us</h3>
<ul>
<li><a href="mailto:lashenmartino@gmail.com">Email</a></li>
<li><a href="https://www.facebook.com/lashen.martino">Facebook</a></li>
<li><a href="https://twitter.com/LashenMartino?s=09">Twiter</a></li>
</ul>
</div>
</div>
</div>
<!-- JavaScript files -->
<script src="js/cursor.js"></script>
<script src="js/User_profile.js"></script>
</body>
</html>