-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
79 lines (70 loc) · 3.49 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
</style>
<title>SQData Web Studio - Login Page</title>
<link rel="stylesheet" type="text/css" href="../Studio/dhtmlxSuite/dhtmlxForm/codebase/skins/dhtmlxform_dhx_skyblue.css"/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script type="text/javascript" src="../Studio/dhtmlxSuite/dhtmlxForm/codebase/dhtmlxcommon.js"></script>
<script type="text/javascript" src="../Studio/dhtmlxSuite/dhtmlxForm/codebase/dhtmlxform.js"></script>
<script type="text/javascript" src="../Studio/dhtmlxSuite/dhtmlxForm/codebase/ext/dhtmlxform_dyn.js"></script>
<script type="text/javascript" src="../Studio/scripts/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../Studio/scripts/prototype.js"></script>
<script type="text/javascript" src='../Studio/dhtmlxSuite/dhtmlxMessage/sources/dhtmlxmessage.js'></script>
<link rel="stylesheet" type="text/css" href="../Studio/dhtmlxSuite/dhtmlxMessage/codebase/skins/dhtmlxmessage_dhx_skyblue.css" />
</head>
<body>
<!--<div id="DivLogo">
<img src="../Studio/data/SQDimgs/sq_skyblue.jpg" alt="SQData Logo"/>
Welcome to SQData Web Studio
</div>
<form action="../Studio/php/login.php" method="post">
<div id="form_container" style="width:100%;height:100%;text-align:center;"></div>
<!--<br />
<input type='button' value='message' onclick='dhtmlx.message("You have pressed the button!")' />
<input type='button' value='styled message' onclick='dhtmlx.message({ type:"error", text:"You have pressed the <br> CRITICAL button!" })' />
</div>
</form>-->
<script type="text/javascript">
// var formChoose = [
// { type: "settings", position: "label-left", labelWidth: 120, inputWidth: 320 },
// { type: "fieldset", label: "Login/Register", inputWidth: "auto", list: [
// { id: "register", name: "register", type: "button", label: "register", value: "Register", tooltip:"Register Here" },
// { id: "login", name: "login", type: "button", label: "Login", value: "Login", tooltip: "Login Here" }
// ]
// }];
// var Chooseform = new dhtmlXForm( "form_container", formChoose );
// Chooseform.attachEvent( "onButtonClick", function ( name )
// {
// if ( name == "register" )
// {
// window.location.assign( "../Studio/reg.html" );
// }
// else
// {
// window.location.assign( "../Studio/login.html" );
//// window.location.assign( "../Studio/indexMain.php" );
// }
// } );
</script>
<script type="text/javascript">
// dhtmlx.confirm( {
// text: "Test Message",
// expire: -1
// } );
// dhtmlx.message( {
// type: "notice",
// text: "Welcome",
// expire: -1
// } )
</script>
<meta http-equiv="refresh" content="0;URL=indexMain.php"/>
</body>
</html>