-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (34 loc) · 1.36 KB
/
index.html
File metadata and controls
40 lines (34 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MYPWA</title>
<link rel="shortcut icon" href="./img/icons.png" type="image/x-icon">
<link rel="apple-touch-icon" href="./img/apple.png">
<meta name="theme-color" content="#3367D6"/>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="manifest" href="./manifest.json">
</head>
<body class="bg-light">
<header class="py-3">
<h2>MYWAnoname</h2>
</header>
<main class="container">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input class="form-control" type="text" name="number" id="number" placeholder="Number WA API Format (Ex:628123123)">
</div>
<button class="btn btn-primary btnChat">Start Chat</button>
</div>
</div>
<footer class="footer text-muted py-5">copyright (c) 2020 <a href="https://idncoding.com/" target="_blank">IDNCoding</a></footer>
</main>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>