source: Dev/trunk/RGraph/docs/iframe-setup.html @ 164

Last change on this file since 164 was 77, checked in by fpvanagthoven, 14 years ago

RGraph

File size: 1.7 KB
Line 
1<!DOCTYPE html >
2<html>
3<head>
4    <title></title>
5</head>
6<body>
7<!DOCTYPE html >
8<html>
9<head>
10    <style>
11        .ModalDialog_dialog {
12            font-family: Georgia, Verdana;
13        }
14    </style>
15</head>
16<body>
17
18    <iframe style="position: fixed; top: 0; left: 0; border: none" id="myIframe" src="iframe.html"></iframe>
19
20    <div id="myCover"></div>
21
22    <script>
23       
24        document.getElementById("myIframe").style.height = '100%';
25        document.getElementById("myIframe").style.width = '100%';
26    </script>
27   
28    <script src="../libraries/RGraph.modaldialog.js" ></script>
29
30    <!-- This is the popup dialog-->
31
32        <div id="loginDialog" style="display: none">
33
34            <b>Please login</b>
35            <p>
36                <table border="0">
37                    <tr>
38                        <td align="right" style="padding-top: 4px">Email</td>
39                        <td><input type="text" size="20" name="email" style="width: 150px" /></td>
40                    </tr>
41
42                    <tr>
43                        <td align="right" style="padding-top: 4px">Password</td>
44                        <td><input type="password" size="20" name="password" style="width: 150px" /></td>
45                    </tr>
46                   
47                    <tr>
48                        <td colspan="2" align="right">
49                            <input type="reset" value="Cancel" onclick="ModalDialog.Close()">
50                            <input type="submit" name="submit" value="Login &raquo;" onclick="alert('This is just an example'); event.stopPropagation()">
51                        </td>
52                    </tr>
53                </table>
54            </p>
55        </div>
56
57    <!-- End of dialog -->
58</body>
59</html>
60   
Note: See TracBrowser for help on using the repository browser.