forked from bijancot/ketemu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (59 loc) · 2.82 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
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
59
60
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/bulma/css/bulma.min.css">
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<section class="hero is-info is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column"></div>
<div class="column">
<h1 class="title">
Ketemu
</h1>
<h2 class="subtitle">
Yet another meet app
</h2>
<div class="card">
<div class="card-content">
<form action="meetnow/" method="post" id="createRoom">
<div class="field">
<label class="label">Room Name</label>
<div class="control">
<input class="input" type="text" name="room" placeholder="Type the name">
</div>
<p class="help">Use alphabet and number only no space allowed <br/>(abc-xyz0-9)</p>
</div>
<div class="field">
<div class="control">
<button class="button is-medium is-warning is-fullwidth"><strong>Create / Join Room</strong></button>
</div>
</div>
</form>
</div>
</div>
<br/>
<a href="#" class="has-text-weight-medium has-text-warning">More Information -></a>
</div>
<div class="column"></div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Ketemu</strong> by <a href="https://panjibaskoro.web.id">Panji Baskoro</a>. The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. Take a look at <a href="https://github.com/bijancot/ketemu">github repository</a> for further information about the source code
</p>
</div>
</footer>
</body>
</html>