-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 756 Bytes
/
index.html
File metadata and controls
27 lines (22 loc) · 756 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
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testing Lambda@Edge</title>
</head>
<body bgcolor="FFFFFF">
<div>
<h1>Testing Lambda@Edge</h1>
</div>
<div>
<!-- This will take the input text which should be a valid GitHub username,
and append it to the GET method querystring as a named key value pair. -->
<form action="index.html?" method="GET">
Enter GitHub username to query from GitHub API (example: mbacchi):
<input type="text" length=25 name="username"></input>
<button type="submit" id="submit">Submit</button>
</form>
</div>
</body>
</html>