-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.php
More file actions
25 lines (25 loc) · 807 Bytes
/
main.php
File metadata and controls
25 lines (25 loc) · 807 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<div class="brand-logo"></div>
<div class="brand-title">BITOID</div>
<form class="inputs" action="fetch.php" method="POST">
<label for="username">Username</label>
<input type="text" name="username">
<label for="data"> Choose: </label>
<select name="data">
<option value="follower">follower</option>
<option value="repositories">repositories</option>
<option value="both">followers & repositories</option>
</select>
<input type="submit" name="submit" class="button">
</form>
</div>
</body>
</html>