-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.html
53 lines (42 loc) · 1.54 KB
/
file.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="utility.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.5.1.min.js" class="jqueryLink"></script>
</head>
<body>
<div id="prova" style="width: 100%; height: 100vh;">
</div>
<div id="divSearch"></div>
<script>
let dati = {
'linkCondizioniUso': '',
'linkCondizioniGenerali': '',
'linkPrivacy': '',
'function_login': '',
'function_register': '',
'show_register': true,
'show_passwordDimenticata': false,
'function_confermaPasswordDimenticata': '',
'show_accediSocial': true,
'extra_input_registrazione': [],
'linkLoginGoogle': 'asd',
'linkLoginFacebook': 'asd',
'anonymous_login_function': 'asd'
}
let lg = new loginUI('#prova', dati);
lg.show();
let username = $('#email')[0].value;
let password = $('#password')[0].value;
let nome = $('#nome')[0].value;
let cognome = $('#cognome')[0].value;
let email = $('#email_rg')[0].value;
let sesso = lg.sessoRegistrazione(); //(m, f, a)
let password1 = $('#password_rg')[0].value;
let password2 = $('#password2_rg')[0].value;
</script>
</body>
</html>