-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhatsapp.html
55 lines (52 loc) · 1.99 KB
/
whatsapp.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
<!--
w3school >> more>> icons.
Font style:
https://www.w3schools.com/icons/fontawesome5_intro.asp
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>whatsapp login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" type="text/css" href="css/style.css">-->
<link rel="stylesheet" type="text/css" href="mystyle.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
</head>
<body>
<img class="wave" src="img/wave.png">
<div class = "container">
<div class="img">
<img src="img/connection.svg">
</div>
<div class="login-content">
<form action="whatsapp.html" method="post">
<img src="img/avatar.svg">
<h2 class="title">Welcome</h2>
<div class="input-div one">
<div class="i">
<i class="fas fa-mobile"></i>
</div>
<div class="div">
<h5>Phone Number</h5>
<input type="test" id="phonenum" name="num" class="input" autocomplete="off" pattern=".{10,}" required>
</div>
</div>
<div class="input-div pass">
<div class="i">
<i class="fas fa-comment-dots"></i>
</div>
<div class="div">
<h5>Text</h5>
<input type="textarea" id="message" class="input" autocomplete="off" >
</div>
</div>
<input type="submit" class="btn" value="Send" onclick="return submitpage(this)">
</form>
<!-- <footer> Developed by Shubham Shankar. </footer>-->
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>