-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
151 lines (124 loc) · 5.92 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!--
=========================================================
* Now UI Kit - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/now-ui-kit
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/now-ui-kit/blob/master/LICENSE.md)
* Designed by www.invisionapp.com Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
@Mod: PHPGrammers
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Send Anonymous Messages - by PHPGrammers">
<meta property="og:description" content="Send Anonymous Messages - by PHPGrammers">
<meta name="author" content="PHPGrammers">
<meta charset="utf-8" property="og:image" content="https://anon.hwcalc.ga/assets/img/anon.jpg">
<meta charset="utf-8" name="keyword" content="PHP, Anonymous, Message">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="./assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
Anonymous Message & Comment by PHPGrammers - LOGIN
</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<!-- CSS Files -->
<link href="./assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="./assets/css/now-ui-kit.css?v=1.3.0" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="./assets/demo/demo.css" rel="stylesheet" />
</head>
<style type="text/css">
.btn-white:hover{
background-color: pink;
color: white;
}
</style>
<body class="index-page sidebar-collapse">
<div class="wrapper">
<div class="main">
<div class="section section-navbars">
<div id="navbar">
<div class="navigation-example" >
<div class="section section-signup" style="background-color:
white ; background-size: cover; background-position: top center; min-height: 700px;">
<div style="width: 100%; text-align: center; margin-top: -125px;">
<h3 style="margin-bottom: 0pt;">Receive Anonymous Messages</h3>
<h5><strong>By PHPGrammers</strong></h5>
</div>
<div class="container">
<div class="row">
<div class="card card-signup" data-background-color="black" style="border-radius: 3.5%;">
<form id="anonymousLogin" class="form" method="POST" action="">
<div class="card-header text-center">
<h3 class="card-title title-up">Login</h3>
</div>
<div class="card-body">
<div class="input-group no-border">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="now-ui-icons now-ui-icons users_single-02"></i>
</span>
</div>
<input required name="nickname" type="text" class="form-control" placeholder="Nickname">
</div>
<div class="input-group no-border">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="now-ui-icons ui-1_lock-circle-open"></i>
</span>
</div>
<input required type="password" placeholder="Password" name="password" id="password" class="form-control" />
</div>
</div>
<div id="anonymousProcess" hidden="" class="text-center"></div>
<div class="card-footer text-center">
<button type="submit" class="btn btn-neutral btn-round btn-lg" style="color:black">Login</button>
</div>
</form>
</div>
</div>
<div class="col text-center" style="">
<a href="register.html" class="btn btn-outline-default btn-round btn-white btn-lg"><b style="color:black;">Create New Account</b></a>
</div>
</div>
</div>
<!-- <footer class="footer" data-background-color="black">
<div class=" container ">
<div class="copyright" id="copyright">
©
<script>
document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))
</script>
</div>
</div>
</footer> -->
</div>
<!-- Core JS Files -->
<script src="./assets/js/core/jquery.min.js" type="text/javascript"></script>
<script src="./assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<!-- Control Center for Now Ui Kit: parallax effects, scripts for the example pages etc -->
<script src="./assets/js/now-ui-kit.js?v=1.3.0" type="text/javascript"></script>
<script src="./assets/js/anonymous.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
// the body of this function is in assets/js/now-ui-kit.js
nowuiKit.initSliders();
});
function scrollToDownload() {
if ($('.section-download').length != 0) {
$("html, body").animate({
scrollTop: $('.section-download').offset().top
}, 1000);
}
}
</script>
</body>
</html>