-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (51 loc) · 1.9 KB
/
index.html
File metadata and controls
58 lines (51 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Full-Stack Challenge - Vinícius Felisberto</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<form method="POST" id="formParticipation" autocomplete="off">
<div class="inputs">
<input id="firstName" type="text" name="firstName" placeholder="First Name" maxlength="255" title="First Name"
required>
<input id="lastName" type="text" name="lastName" placeholder="Last Name" maxlength="255" title="Last Name"
required>
<input id="participation" type="number" name="participation" placeholder="Participation" min="0.1" max="100"
title="Participation" required pattern="[0-9]+([\.,][0-9]+)?" step="0.01">
<button id="btnForm" type="submit">SEND</button>
</div>
</form>
</header>
<section class="description">
<h1>DATA</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</section>
<section class="tableGraph">
<div class="table">
<table>
<thead>
<tr>
<th></th>
<th>First name</th>
<th>Last name</th>
<th>Participation</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="chart-container">
<canvas id="myChart"></canvas>
</div>
</section>
<script async src="js/chart.min.js"></script>
<script async src="js/script.js"></script>
</body>
</html>