summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/fcl-web/examples/combined/combined.html
blob: 377a592a90ec7a196a31f8a818d9f44c78f0d937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<title>ExtJS application demo</title>
<link rel="stylesheet" type="text/css" href="/ext/resources/css/ext-all.css"/>
<script src="/ext/adapter/ext/ext-base.js"></script>
<script src="/ext/ext-all-debug.js"></script>
<script src="combined.cgi/Login/API"></script>
<script src="login.js"></script>
<script>
Ext.onReady(function() {  
  // API is registered under FPWeb by default.
  Ext.Direct.addProvider(FPWeb);
  fpWeb.login=new fpWeb.LoginForm({});
  fpWeb.login.show();
});
</script>
</head>
<body>
</body>
</html>