-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmentor-items.html
More file actions
105 lines (96 loc) · 3.59 KB
/
mentor-items.html
File metadata and controls
105 lines (96 loc) · 3.59 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
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mentor Store</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link rel="stylesheet" href="assets/stylesheets/item-cards.css">
</head>
<body>
<header class="primary-header">
<div class="container">
<div class="sub-header">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="LOGO">
</a>
</div>
</div>
<nav class="primary-nav">
<ul>
<li><a href="mentor.html">My Class</a></li>
<li><a href="mentor-students.html">Students</a></li>
<li><a href="mentor-items.html">Artifacts</a></li>
<li><a href="mentor-quests.html">Quests</a></li>
<li class="dropdown">
<a href="javascript:void(0)">Review</a>
<div class="dropdown-content">
<a href="mark-achieved-quests.html">Quests</a>
<a href="mark-bought-artifacts.html">Artifacts</a>
</div>
</li>
</ul>
<div id="logout">
<a href="login.html">
<img src="assets/images/logout.png" alt="Logout">
</a>
</div>
</nav>
</div>
</header>
<section class="main-info cards-display">
<div class="item-card item-card-gold">
<div id="description" class="item-card-header" contenteditable="true">Circle of Sorcery
<div class="item-card-price">
<div id="price" class="item-card-price-box" contenteditable="true">1000</div>
</div>
</div>
<div class="item-card-image">
<img src="assets/images/item-card/item-sorcery-circle.jpg" alt="Circle of sorcery">
</div>
<div class="item-card-category">
Magic Item
</div>
<div class="item-card-text-box">
<div id="cardText" class="item-card-text" contenteditable="true">60 min workshop by a mentor(s) of the chosen topic </div>
<button class="myButton" onclick="sendInfoItemsCard()">Save changes
</button>
</div>
</div>
<div class="item-card item-card-gold">
<div id="newDescription" class="item-card-header" contenteditable="true">Enter Description
<div class="item-card-price">
<div id="newPrice" class="item-card-price-box" contenteditable="true">???</div>
</div>
</div>
<div class="item-card-image">
<label for="file-upload" class="custom-file-upload">
<img id="emptyImage" src="assets/images/empty-photo-resize.jpg" alt="emptyPhoto">
</label>
<input id="file-upload" type="file" accept="image/png, image/jpeg" onchange="loadFile(event)"/>
</div>
<div class="item-card-category">
Choose category
</div>
<div class="item-card-text-box">
<div id="newCardText" class="item-card-text" contenteditable="true">Enter item description</div>
<button class="myButton" onclick="sendInfoToCreateCard()">Create new card
</button>
</div>
</div>
</section>
<footer class="primary-footer">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="Logo">
</a>
</div>
<div>
<small>© CodeClimbersCorp</small>
</div>
<div>
</div>
</footer>
<script src="Scripts/script.js"></script>
</body>
</html>