To include your content into the default layout, use the example below.
<!DOCTYPE html>
<html ng-app="app">
<head>
$include -placeholder'agentapp-form-head' -indent' '$
<style>
/* CSS here */
</style>
</head>
<body class="hold-transition skin-blue sidebar-mini" ng-controller="ControllerBody">
$include -placeholder'agentapp-form-body' -indent' '$
<script type="text/ng-template" id="content.html">
<section class="content" ng-controller="myCtrl">
<!-- START CUSTOM TABS -->
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-body">
Your page content goes here
</div>
</div>
</div>
</div>
</section>
</script>
<script>
var app = angular.module('app', ['iService.ng', 'iService.directive', 'iService.base', 'ngSanitize', 'ngRoute', 'angularMoment']);
app.config(['iService.loggedIn', function (loggedIn) {
iservice.ProcessLogin(loggedIn);
}]);
//JS here
</script>
</body>
</html>
In some cases you might need to insert your content as an iFrame similar to below. Set the height to an appropriate size for your form. The contents of the iFrame page should be designed to be responsive to it adjusts properly for the device used.
<iframe style="border:0px;" src="/f/23" width="100%" height="900"></iframe>
|