-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (156 loc) · 5.63 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<!-- <html lang="en"> -->
<html lang="it">
<head>
<!--<meta http-equiv="Content-Security-Policy" content="default-src 'none' ; script-src resource:; "> -->
<meta charset="utf-8">
<meta http-equiv="content-language" content="IT">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iVandamme">
<meta name="author" content="https://ivanpierdeveloper.it">
<meta name="keywords" content="app, authenticate, php authenticate">
<link rel="shortcut icon" href="img/all/favicon.png" type="image/x-icon" sizes="16x16">
<link rel="stylesheet" type="text/css" href="docs/css/root.css">
<link rel="stylesheet" type="text/css" href="docs/css/my-alert.css">
<link rel="stylesheet" href="docs/css/style.css">
<link rel="stylesheet" href="docs/css/media-query.css">
<link rel="stylesheet" href="docs/css/tooltip.css" type="text/css">
<title>Home | Authenticate</title>
<style type="text/css">
table {
table-layout: fixed;
width: 100%;
word-wrap: break-word;
height: auto;
color: var(--yellow);
}
table caption {
color: var(--white);
text-align: center;
}
table th {
border: 1px solid var(--danger);
}
table td {
border: 1px solid var(--orange);
text-align: center;
font-size: 8pt;
}
.name {
padding: 18px;
border: 1px solid var(--white);
border-radius: 8px;
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 8px;
margin-top: 5px;
position: relative;
}
.name span {
width: 40%;
position: absolute;
left: 30%;
top: 25%;
}
.grid {
width: 80%;
padding: 18px;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 18px;
border: 1px solid var(--secondary);
border-radius: 8px;
margin-left: auto;
margin-right: auto;
color: var(--darkorchid);
}
.grid-text{
width: 80%;
padding: 18px;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 18px;
border: 1px solid var(--secondary);
border-radius: 8px;
margin-left: auto;
margin-right: auto;
}
h5 {
color: var(--silver);
font-weight: bold;
}
hr {
width: 100%;
}
</style>
</head>
<body>
<div class="full-screen"></div>
<!-- ./full-screen -->
<div class="my-alert"></div>
<!-- ./my-alert -->
<div class="my-alert-message"></div>
<!-- ./my-alert-message -->
<div class="loader"></div>
<!-- loader-->
<div class="loader-text"></div>
<!-- loader-text -->
<div class="container">
<h1 class="root-text-indianred root-text-align-center root-text-color-blue">PHP AUTHENTICATE BASIC-</h1>
<hr />
<center><h5><a href="docs/pages/second_method.php" class="root-text-color-secondary">second method</a></h5></center>
<center><h5>welcome to php authenticate, first method</h5></center>
<div class="grid">
<!--<div class="tble-excel root-display-none"></div>-->
<span class="root-text-color-secondary">for test</span>
<ul>
<li>user 1</li>
<li>username => pluto</li>
<li>passwd => abc123</li>
<li>user 2</li>
<li>username => topolino</li>
<li>passwd => def456</li>
<li>all lowercase</li>
</ul>
<hr>
<label for="user">username</label>
<input type="text" class="user" placeholder="you username">
<label for="passwd">passwd</label>
<input type="password" class="passwd" placeholder="you passwd" onkeypress='javascript:keyUp();'>
<button class="btn btn-s send.data" onclick='javasscript:login();'>login</button>
<div class="result"></div>
<!--
<center><h5>grid-2</h5></center>
-->
<!--
<div class="grid-text">
<div class="tooltip">
<span class="tooltiptext">alert personalizza</span>
<button class="btn btn-c my-alert-d" onclick="javascript:alertCustomized(`HELLO WORD`);">customized</button>
</div>
</div>
-->
</div>
<!-- ./grid -->
</div>
<!-- ./container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" defer></script>
<!-- ./lib google ajax -->
<script lang="javascript" src="docs/js/my-alert.js" defer></script>
<!-- my-alert js -->
<!-- (defer) non accesso dall'esterno -->
<script lang="javascript" src="docs/js/script.js" defer></script>
<!-- script js -->
<script lang="javascript">
'use strict'
function name() {
try {
}// ./try
catch(Exception) {
console.error(`Messaggio di errore: ${Exception.message}`);
}
}// .name
</script>
</body>
</html>