-
Notifications
You must be signed in to change notification settings - Fork 65
/
index.html
45 lines (45 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<title>WhatsGPT</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('https://w0.peakpx.com/wallpaper/818/148/HD-wallpaper-whatsapp-background-cool-dark-green-new-theme-whatsapp.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
</style>
</head>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge">
WhatsGPT
</div>
<div class="w3-display-middle">
<h2 class="w3-jumbo w3-animate-top">WhatsGPT Connecter</h2>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<form action="/submit" method="post">
<p class="w3-center">
<label><b>Your Phone</b></label>
<input name="phoneNumber" class="w3-input w3-border w3-margin-bottom" />
<label><b>Your Prompt</b></label>
<textarea name="message" class="w3-input w3-border w3-margin-bottom" rows="4" cols="50"></textarea>
</p>
<p class="w3-center">
<button type="submit">Submit</button>
</p>
</form>
</div>
<div class="w3-display-bottomleft w3-padding-large">
Powered by <a href="/" target="_blank">WhatsGPT</a>
</div>
</div>
</body>
</html>