forked from eliseoeric/is-5600-lab-02
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (68 loc) · 2.26 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Lab 02 | Stock Portfolio Dashboard</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,400i,700" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="/data/users.js"></script>
<script src="/data/stocks-complete.js"></script>
<script src="/app.js"></script>
</head>
<body>
<header>
<h1>Lab 02 | Stock Portfolio Dashboard</h1>
</header>
<main class="grid-container">
<section class="user-list-container">
<h2>Users</h2>
<ul class="user-list"></ul>
</section>
<section class="Details">
<div class="UserForm">
<h2>User Form</h2>
<form class="userEntry">
<input type=hidden id="userID" />
<label for="firstname">Name </label>
<input type=text id="firstname" class="one" />
<input type=text id="lastname" class="two" />
<label for="address">Address </label>
<input type=text id="address" class="one" />
<input type=text id="city" class="two" />
<label for="email">Email </label>
<input type=email id="email" class="both" />
<button class="one" id="btnSave">Save</button>
<button class="two" id="btnDelete">Delete</button>
</form>
</div>
<div class="Portfolio">
<div class="StockList">
<h2>Portfolio</h2>
<div class="portfolio-list">
<h3>Symbol</h3>
<h3># Shares</h3>
<h3>Actions</h3>
</div>
</div>
<div class="StockDetails">
<h2>Details</h2>
<div class="stock-form">
<div class="logoContainer">
<img id="logo" />
</div>
<p class="stockLabel">Name</p>
<p id="stockName"></p>
<p class="stockLabel">Sector</p>
<p id="stockSector"></p>
<p class="stockLabel">Industry</p>
<p id="stockIndustry"></p>
<p class="stockLabel">Address</p>
<p id="stockAddress"></p>
</div>
</div>
</div>
</section>
</main>
</body>
</html>