225 lines
6.7 KiB
HTML
225 lines
6.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Excelss REST API Client Portal</title>
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
|
|
name="viewport">
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
|
|
<!-- AdminLTE Skins. Choose a skin from the css/skins
|
|
folder instead of downloading all of them to reduce the load. -->
|
|
<link rel="stylesheet" href="dist/css/skins/_all-skins.min.css">
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body class="hold-transition skin-blue sidebar-mini">
|
|
<div class="wrapper">
|
|
|
|
<header class="main-header">
|
|
<!-- Logo -->
|
|
<a href="index2.html" class="logo"> <!-- mini logo for sidebar mini 50x50 pixels -->
|
|
<span class="logo-mini"><b>E</b>SS</span> <!-- logo for regular state and mobile devices -->
|
|
<span class="logo-lg"><b>Excelss REST Client</b></span>
|
|
</a>
|
|
<!-- Header Navbar: style can be found in header.less -->
|
|
<nav class="navbar navbar-static-top">
|
|
<!-- Sidebar toggle button-->
|
|
<a href="#" class="sidebar-toggle" data-toggle="offcanvas"
|
|
role="button"> <span class="sr-only">Toggle navigation</span> <span
|
|
class="icon-bar"></span> <span class="icon-bar"></span> <span
|
|
class="icon-bar"></span>
|
|
</a>
|
|
|
|
|
|
</nav>
|
|
</header>
|
|
<!-- Left side column. contains the logo and sidebar -->
|
|
<aside class="main-sidebar">
|
|
<!-- sidebar: style can be found in sidebar.less -->
|
|
<section class="sidebar">
|
|
<!-- sidebar menu: : style can be found in sidebar.less -->
|
|
<ul class="sidebar-menu">
|
|
<li class="header">MAIN NAVIGATION</li>
|
|
|
|
<li><a href="index.html"><i class="fa fa-file"></i> <span>Get
|
|
Token</span></a></li>
|
|
<li><a href="index.html"><i class="fa fa-file"></i> <span>Get
|
|
Products</span></a></li>
|
|
<li><a href="index.html"><i class="fa fa-file"></i> <span>Expire
|
|
Token</span></a></li>
|
|
</ul>
|
|
</section>
|
|
<!-- /.sidebar -->
|
|
</aside>
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>Get Token</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
|
|
<li class="active">Get Token</li>
|
|
</ol>
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="row">
|
|
|
|
<!-- right column -->
|
|
<div class="col-md-12">
|
|
<!-- Horizontal Form -->
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">Rest API</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<!-- form start -->
|
|
<form class="form-horizontal">
|
|
<div class="box-body">
|
|
<div class="row">
|
|
|
|
<!-- right column -->
|
|
<div class="col-md-7">
|
|
<div class="form-group">
|
|
<label for="api_key" class="col-sm-2 control-label">API
|
|
Key</label>
|
|
|
|
<div class="col-sm-10">
|
|
<input type="text" name="api_key" class="form-control"
|
|
id="api_key" placeholder="API Key">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="api_secret" class="col-sm-2 control-label">API
|
|
Secret</label>
|
|
|
|
<div class="col-sm-10">
|
|
<input type="text" name="api_secret" class="form-control"
|
|
id="api_secret" placeholder="API Secret">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<button type="submit" class="btn btn-info pull-left">Generate
|
|
Token</button>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<p>
|
|
<strong>Your Token is :</strong>---------------------------
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
<div class="box-footer"></div>
|
|
<!-- /.box-footer -->
|
|
</form>
|
|
</div>
|
|
<!-- /.box -->
|
|
|
|
</div>
|
|
<!--/.col (right) -->
|
|
</div>
|
|
<!-- /.row -->
|
|
|
|
<div class="row">
|
|
|
|
<!-- right column -->
|
|
<div class="col-md-12">
|
|
<!-- Horizontal Form -->
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">Rest API</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<div class="box-body table-responsive ">
|
|
<table class="table table-striped table-bordered table-hover">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>Sl.</th>
|
|
<th>Name</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th>Address</th>
|
|
|
|
<th class="text-right">Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>1</td>
|
|
<td>Name</td>
|
|
<td>s@gmail.com</td>
|
|
<td>Aug,09</td>
|
|
<td class=" text-right">
|
|
Test
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /.box -->
|
|
|
|
</div>
|
|
<!--/.col (right) -->
|
|
</div>
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
<footer class="main-footer">
|
|
<strong>Copyright © 2016 <a href="http://excelss.com/" target="blank">Excelss</a>.
|
|
</strong> All rights reserved.
|
|
</footer>
|
|
|
|
|
|
<!-- Add the sidebar's background. This div must be placed
|
|
immediately after the control sidebar -->
|
|
<div class="control-sidebar-bg"></div>
|
|
</div>
|
|
<!-- ./wrapper -->
|
|
|
|
<!-- jQuery 2.2.0 -->
|
|
<script src="plugins/jQuery/jQuery-2.2.0.min.js"></script>
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
<!-- FastClick -->
|
|
<script src="plugins/fastclick/fastclick.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="dist/js/app.min.js"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
<script src="dist/js/demo.js"></script>
|
|
</body>
|
|
</html>
|