-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
151 lines (135 loc) · 6.58 KB
/
index.php
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="services">
<link rel="shortcut icon" href="/img/favicon.ico">
<title>scalabrine | services</title>
<!-- Bootstrap core CSS -->
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/theme.css" rel="stylesheet">
<link href="/css/bootstrap-reset.css" rel="stylesheet">
<!--external css-->
<link href="/assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<!-- Custom styles -->
<link href="/css/style.css" rel="stylesheet">
<link href="/css/style-responsive.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltipss and media queries -->
<!--[if lt IE 9]>
<script src="/js/html5shiv.js"></script>
<script src="/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--header start-->
<header class="header-frontend">
<div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index"><span>scalabrine</span></a>
</div>
<div class="navbar-collapse collapse ">
<ul class="nav navbar-nav">
<li><a href="/dashboard/login">login</a></li>
</ul>
</div>
</div>
</div>
</header>
<!--header end-->
<div class="gray-box mbot50">
<div class="container">
<div class="row">
<div class="row">
<div class="text-center feature-head">
<h1> What We Offer </h1>
</div>
<div class="services">
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class="icon-code"></i>
</div>
<div class="content">
<h3 class="title"> Configuration Page </h3>
<p>This configuration page is for developers to get the script for the site they will track errors on.</p>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class="icon-user"></i>
</div>
<div class="content">
<h3 class="title"> Admin Dashboard </h3>
<p>This admin dashboard allows the admin to see who logs in and logs out of the system, add/edit/delete clients, and get basic stats on overall usage and error rates across accounts.</p>
</div>
</div>
</div>
<div class="services">
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class="icon-desktop"></i>
</div>
<div class="content">
<h3 class="title"> Account Creation and Management </h3>
<p>Users who wish to track their errors on their website can create an account, which may have many users. Additionally, each account will have full user management (Add, Edit and Delete users including setting passworsd and access). Users may also recover their own password using our password recovery system.</p>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class="icon-dashboard"></i>
</div>
<div class="content">
<h3 class="title">Dashboard Page for Recent Errors</h3>
<p>Users who create an account can see their recent errors in a grid and chart.</p>
</div>
</div>
</div>
<div class="services">
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class=" icon-bullhorn"></i>
</div>
<div class="content">
<h3 class="title">Error Detail Page</h3>
<p>Users can see an error detail page that show an error incident and provides an area for other users to comment on the errors and rate severity of an error (1-5 stars). Users can also upload screenshots.</p>
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="icon-wrap ico-bg round">
<i class=" icon-book"></i>
</div>
<div class="content">
<h3 class="title">JavaScript Error Collecting</h3>
<p>We have a service endpoint that collects the errors sent in as JavaScript errors happen.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--footer start-->
<footer class="footer">
<div class="container">
<div class="col-lg-5 col-lg-offset-5">
<em>2014 © scalabrine.</em>
</div>
</div>
</footer>
<!--footer end-->
<!-- js placed at the end of the document so the pages load faster -->
<script src="/js/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/jquery.easing.min.js"></script>
<!--common script for all pages-->
<script src="/js/common-scripts.js"></script>
<script>
</script>
</body>
</html>