-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.html
More file actions
47 lines (44 loc) · 1.46 KB
/
settings.html
File metadata and controls
47 lines (44 loc) · 1.46 KB
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
<!DOCTYPE html>
<!--Copyright (C) 2019 FireEye, Inc. All Rights Reserved.-->
<html>
<head>
<title>FireEye - Detection On Demand Settings</title>
<style type="text/css">
</style>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap4.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<div style="float:right;">
<a href="index.html"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
</div>
<div>
<img src="images/logo.png" style="height: 60px;width:60px;margin-left: 15px;float: left;margin-top: -15px">
<h3>FireEye - Detection On Demand</h3>
</div>
<br><br>
<div class="container">
<div class="panel panel-default">
<div class="panel-heading" style="font-size: +15px">Setting</div>
<div class="panel-body">
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">API key</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="api_key" placeholder="API KEY">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" id="save_email" class="btn btn-success">Submit</button>
</div>
</div>
<div id="msg"></div>
</div>
</div>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/settings.js"></script>
</body>
</html