-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
42 lines (40 loc) · 1.99 KB
/
dashboard.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
<head>
<script defer src="/js/jquery-3.3.1.min.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/5.7.0/firebase.js"></script>
<script defer src="/js/dashboard.js"></script>
<link rel="stylesheet" href="/css/dashboard.css">
</head>
<body>
<div id = "gridLayout">
<h1 style="grid-column: 1;">Pokémon Party: </h1>
<h1 style="margin-left: 9%; grid-column: 2;">Pokémon Market: </h1>
<div class = "dash-container" style = "grid-column: 1;">
<div class = "partyGrid" id = "userGrid"></div>
</div>
<div class = "dash-container marketContainer" style = "grid-column: 2;">
<div id = "marketplace"></div>
</div>
<h1 style="grid-column: 1;">Pokémon Party Search: </h1>
<div id = "sellPlace" style="grid-column: 2; justify-self: end;">
<label>Sell Pokémon</label>
<select id = "pokemon-select" required>
</select>
<label>Price:</label>
<input id = "sellPrice" type = "number" required>
<input id = "submitSale" type = "submit" value = "Sell">
</div>
<div class = "dash-container" style = "grid-column: 1; height: max-content;">
<form>
<input type="text" id = "search-username" placeholder="Username Lookup">
<input type="submit" id = "searchSubmit" style = "float: right; margin-right: 10px;" value="Submit">
</form>
<div class = "partyGrid" id = "searchGrid" style = "max-height: 210px"></div>
</div>
<label id = "sell-error" style = "grid-column: 2; grid-row: 4; justify-self: end; margin-right: 43px;"></label>
<div id = "duster" style = "grid-column: 2; grid-row: 4; margin-top: 20px; justify-self: end">
<label>Dust Pokémon for 5 Pokécoins</label>
<select id ="duster-select"></select>
<input type = "submit" id = "dusterSubmit">
</div>
</div>
</body>