-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprofile.html
43 lines (40 loc) · 1.18 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Edit Profile</title>
<link rel="stylesheet" href="css/profile.css">
</head>
<body>
<h1>Edit Profile</h1>
<form id="profile-form">
<div id="sections-container">
<!-- Initial section -->
<div class="section">
<h2>Personal Information</h2>
<div class="fields-container">
<div class="field">
<label for="name">Name:</label>
<input type="text" name="name" required>
</div>
<div class="field">
<label for="bio">Bio:</label>
<textarea name="bio"></textarea>
</div>
<div class="field">
<label for="homepage">Homepage:</label>
<input type="url" name="homepage">
</div>
<!-- Add more fields based on the RDF ontologies -->
</div>
<button class="add-field">Add Field</button>
</div>
</div>
<button class="add-section">Add Section</button>
<button class="remove-section">Remove Section</button>
<button type="submit">Save</button>
</form>
<script src="js/rdf.js"></script>
<script src="js/profile.js"></script>
</body>
</html>