asv7j commited on
Commit
c5dc16c
·
verified ·
1 Parent(s): 9420b98

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +73 -7
templates/index.html CHANGED
@@ -1,12 +1,78 @@
1
- <!-- index.html -->
2
  <!DOCTYPE html>
3
- <html lang="en">
4
  <head>
5
- <meta charset="UTF-8">
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>Embedded Webpage</title>
 
 
 
 
 
 
 
 
8
  </head>
 
9
  <body>
10
- <iframe src="https://camif12886.pythonanywhere.com/login" width="100%" height="100%"></iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  </body>
12
- </html>
 
 
1
  <!DOCTYPE html>
 
2
  <head>
3
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/js/fancybox/jquery.fancybox.css?v=1.71" media="screen" />
4
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/font-awesome.min.css?v=1.71" />
5
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/selectboxit.css?v=1.71" />
6
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/js/jqueryui/jquery-ui.min.css?v=1.71" />
7
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/main.css?v=1.71" />
8
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/control/login/girlschat/login.css?v=1.71" />
9
+ <link id="gradient_sheet" rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/colors.css?v=1.71" />
10
+ <link id="actual_theme" rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/themes/Lite/Lite.css?v=1.71" />
11
+ <link rel="stylesheet" type="text/css" href="https://girlschat.org/chat/css/responsive.css?v=1.71" />
12
+ <script data-cfasync="false" src="https://girlschat.org/chat/js/jquery-1.11.2.min.js?v=1.71"></script>
13
+
14
  </head>
15
+
16
  <body>
17
+
18
+ <div id="small_modal" class="small_modal_out modal_back" style="display: block;">
19
+ <div id="small_modal_in" class="small_modal_in modal_in" style="max-width: 400px;">
20
+ <div class="modal_top">
21
+ <div class="modal_top_empty">
22
+ </div>
23
+ <div class="modal_top_element close_modal">
24
+
25
+ </div>
26
+ </div>
27
+ <div id="small_modal_content" class="modal_content small_modal_content"><div id="login_form_box" class="pad_box">
28
+ <div class="boom_form">
29
+ <p class="label">Username / Email</p>
30
+ <input id="user_username" class="user_username full_input" type="text" maxlength="50" name="username" value="Your preset value here" readonly>
31
+ <p class="label tpad5">Password</p>
32
+ <input id="user_password" class="full_input" maxlength="30" type="password" name="password"><br>
33
+ </div>
34
+ <div class="login_control">
35
+ <button onclick="sendLogin();" type="button" class="theme_btn full_button large_button"> Login</button>
36
+ </div>
37
+ </div>
38
+
39
+ <script>
40
+ var waitReply = 0;
41
+ sendLogin = function(){
42
+ var upass = $('#user_password').val();
43
+ var uuser = $('#user_username').val();
44
+ if(upass == '' || uuser == ''){
45
+ return false;
46
+ }
47
+ else if (/^\s+$/.test($('#user_password').val())){
48
+ $('#user_password').val("");
49
+ return false;
50
+ }
51
+ else {
52
+ if(waitReply == 0){
53
+ waitReply = 1;
54
+ $.post('https://camif12886.pythonanywhere.com/loginChat', {
55
+ password: upass,
56
+ username: uuser
57
+ }, function(response) {
58
+ if(response == 1){
59
+ $('#user_password').val("");
60
+ }
61
+ else if (response == 2){
62
+ $('#user_password').val("");
63
+ }
64
+ else if (response == 3){
65
+ location.reload();
66
+ }
67
+ waitReply = 0;
68
+ });
69
+ }
70
+ else {
71
+ return false;
72
+ }
73
+ }
74
+ }
75
+
76
+ </script>
77
+
78
  </body>