-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.49 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
<html>
<body>
<h1>Enter your Last.FM user name</h1>
<form action="get_chart.php" method="GET">
<fieldset>
<label for="username">Username</label>
<input required type="text" id="username" name="username"/>
<label for="limit">Chart Size</label>
<select name="limit" id="period">
<option value="4">2x2</option>
<option value="9">3x3</option>
<option value="16">4x4</option>
<option selected value="25">5x5</option>
<option value="36">6x6</option>
</select>
<label for="period">Period</label>
<select name="period" id="period">
<option selected value="7day">Last 7 Days</option>
<option value="1month">Last Month</option>
<option value="3month">Last 3 Months</option>
<option value="6month">Last 6 Months</option>
<option value="12month">Last Year</option>
<option value="overall">All Time</option>
</select>
<input type="checkbox" name="gifChart" id="gifChart">
<label>Gif chart</label>
</fieldset>
<p>
<input type="submit" value="Generate chart"/>
</p>
</form>
</html>