-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_page.html
54 lines (41 loc) · 1.18 KB
/
my_page.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
---
tab: my_page
layout: default
title: My Page
---
<script src="assets/js/my_page.js"></script>
<h1>My page</h1>
<h2>About me</h2>
<div class="logging-in lead">Logging in</div>
<div class="col">
<div class="row mb-2">
<span class="mr-2">My name:</span>
<div id="my_name"></div>
</div>
<div class="row mb-2">
<span class="mr-2">My parent:</span>
<div id="parent_name"></div>
</div>
<div class="row mb-2">
<span class="mr-2">Parent's email:</span><div id="parent_email"></div>
</div>
<div class="row mb-2">
<span class="mr-2">Parent's phone:</span><div id="parent_phone"></div>
</div>
<div class="row mb-4">
<label class="col-form-label mr-2" for="login_link">My login link:</label>
<div id="login_link" class="pt-2 mr-4"></div>
<button class="logout btn btn-sm btn-outline-danger ml-5">Logout</button>
</div>
<div class="row mb-4">
<a href="/edit_user"><i class="fa fa-edit mr-2"></i> Edit my profile</a>
</div>
</div>
<div class="volunteered d-none">
<h2>I volunteered for</h2>
<table class="items table"><tbody/></table>
</div>
<div class="sold d-none">
<h2>Jobs sold</h2>
<table class="items table"><tbody/></table>
</div>