-
Notifications
You must be signed in to change notification settings - Fork 1
/
Manu.html
69 lines (65 loc) · 2.2 KB
/
Manu.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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>Helio Portal</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<a id="logo-container" href="index.html" class="brand-logo"><img src="logos/banner-logo.png" width=100% height=100%></a>
<div class="nav-wrapper container">
<ul class="right hide-on-med-and-down">
<li><a href="#"><!--Navbar Link--></a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="#">Navbar Link</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
<div class="container">
<h1>Installers</h1>
<!-- <img src=""> LOGO GOES HERE -->
<form>
<input type="text" name="location" placeholder="Zip code or State">
<input type="text" name="date" placeholder="enter date MM/DD/YYYY">
<input type="submit" value="search">
</form>
<h3> Weather Conditions </h3>
<ul>
<!-- <li style='color:green'>Excellent</li> -->
<li style='color:blue'>Fair</li>
<!-- <li style='color:orange'>Inadequate</li>
<li style='color:red'>Hazardous</li> -->
</ul>
<h3> PV System Statistics</h3>
<table class="striped">
<tr>
<td >Consumption: </td>
<td >Production: </td>
<td >SelfConsumption: </td>
<td >Feedin(export): </td>
<td >Purchased(Import): </td>
</tr>
</table>
<h3>Component Problems in Your Area</h3>
<table class="striped">
<tr>
<th>Name</th>
<th>Manufacturer</th>
<th>Model</th>
<th>status</th>
<tr>
<td>Inverter1</td>
<td>SolarEdge</td>
<td>SE16K</td>
<td>Active</td>
</tr>
</table>
</div>
</body>
</html>