-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
28 lines (25 loc) · 1.03 KB
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Agora Web</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" type="text/css" href="./styles/normalize.css">
<link rel="stylesheet" type="text/css" href="./styles/skeleton.css">
<link rel="stylesheet" type="text/css" href="./styles/extra.css">
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<div class='page-container'>
<form class="landing-form-element" action="/sendChannel" method="POST">
<div class="field">
<label for="channel-name" class='channel-name'>Channel Name</label>
<input class='u-full-width' id='channel-name' type="text" name="channelName" value="default-channel" required>
</div>
<!-- <div class="g-recaptcha" data-sitekey="6LdSmH8UAAAAAIeebu--oN0YSQlM-Z7MvvbuHX2b"></div> -->
<input class="button-primary" type="submit" value="Submit" id='submit-form'></input>
</form>
</div>
<script src="./scripts/styling.js"></script>
</body>
</html>