| 23783 |
ashik.ali |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>ROLE MGMT</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>CREATE API</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
<div style="background:white;background-color:white;padding:10px;">
|
|
|
12 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Api Information</h4>
|
|
|
13 |
<div>
|
|
|
14 |
<div class = "row">
|
|
|
15 |
<div class="col-lg-2 form-group">
|
|
|
16 |
<input placeholder="Name" id="apiName" name="apiName" type="text" value="" class="form-control input-sm">
|
|
|
17 |
</div>
|
|
|
18 |
<div class="col-lg-2 form-group">
|
|
|
19 |
<input placeholder="Uri" id="uri" name="uri" type="text" value="" class="form-control input-sm">
|
|
|
20 |
</div>
|
|
|
21 |
<div class="col-lg-2 form-group">
|
|
|
22 |
<select class="form-control input-sm" id = "api-methods" name = "api-methods" placeholder="Method">
|
|
|
23 |
<option value="" disabled selected>Method</option>
|
|
|
24 |
#foreach($method in $methods)
|
|
|
25 |
<option value="$method">$method</option>
|
|
|
26 |
#end
|
|
|
27 |
</select>
|
|
|
28 |
</div>
|
|
|
29 |
<div class="col-lg-2 form-group">
|
|
|
30 |
<button class="btn btn-primary create-api-button" type="button" style="width:100%;border-radius:0px;">Create Api</button>
|
|
|
31 |
</div>
|
|
|
32 |
</div>
|
|
|
33 |
</div>
|
|
|
34 |
</div>
|
|
|
35 |
|
|
|
36 |
</section>
|