-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
71 lines (70 loc) · 2.91 KB
/
index.php
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
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="style.css" rel="stylesheet">
<link href="animation.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP" rel="stylesheet">
<title>Simple Chat Bot</title>
</head>
<body>
<div class="container" id="awal">
<div class="card animated fadeIn delay-1s">
<h2>Pilih Metode Exact Matching</h2>
<ul>
<li>
<input type="radio" name="name" id="one" checked />
<label for="one">Boyer Moore</label>
<div class="check"></div>
</li>
<li>
<input type="radio" name="name" id="two" />
<label for="two">KMP</label>
<div class="check"></div>
</li>
</ul>
<button type="button" class=next id="next1">NEXT</button>
</div>
</div>
<div class="container" id="persentase" hidden>
<div class="card animated fadeIn delay-1s">
<h2>Pilih Persentase Kemiripan</h2>
<input id="input" type="range" name="points" min="0" max="90">
<div id="nilai">
<p>Persentase Kemiripan : <span style="font-weight: bold">45%</span></p>
</div>
<button type="button" class=next id="next2">NEXT</button>
</div>
</div>
<div id="konten" hidden>
<div class="container">
<div class="avatar animated fadeIn" id="avatar">
<img src="avatar-2.png" alt="">
</div>
<div class="roomchat animated fadeIn">
<div id="header">
<img src="avatar-1.png">
<div class="status">
<h4>Rinaldi</h4>
<p>online</p>
</div>
</div>
<div class="chat" id="chat">
<div class="bot animated bounce">
<p>Halo, ada yang bisa saya bantu?</p>
</div>
</div>
<div class="input">
<form method="POST" id="formchat">
<input type="text" id="message" placeholder="Masukkan pesan ..." autofocus autocomplete="off">
<input class="submit" id="kirim" type="submit" value="Kirim">
</form>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>