forked from Sowmiya-17/sowmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompany.html
104 lines (102 loc) · 2.3 KB
/
company.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>
Fourbees
</title>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
display: inline-block;
position: relative;
color: #0087ca;
}
li a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #0087ca;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
li a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
h1,h2{
color: #0087ca;
text-align: center;
}
table {
border-collapse: collapse;
width: 50%;
margin-left: auto;
margin-right: auto;
border: 1px solid black;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #DDD;
border: 1px solid black;
}
</style>
</head>
<body>
<div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="companylogin.html">Company</a></li>
<li><a href="stack.html">Stacks</a></li>
<li><a href="purchaselist.html">Purchase</a></li>
<li><a href="saleslist.html">Sales</a></li>
{% for data in datas %}
<li style="float: right;"><a href="#"><b>CASH BALANCE : </b>{{data.cash_balance}}</a></li>
{% endfor %}
</ul>
</div>
<hr>
<div>
<h1>FOUR BEES</h1>
<h2>STOCK INVENTORY WEBSITE</h2>
</div>
<div class="card">
{% for data in datas %}
<h1 style="color: #0087ca;">Company: {{data.company_name}}</h1>
{% endfor %}
</div>
<table>
<tr>
<th>Company</th>
<th>Cash</th>
<th>Update</th>
</tr>
{% for data in datas %}
<tr>
<td>{{data.company_name}}</td>
<td>{{data.cash_balance}}</td>
<td><a href="{{url_for('addcash')}}">Update Amount</a></td>
</tr>
{% endfor %}
</table>
</body>
</html>