-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsensor_download.html
38 lines (33 loc) · 1.11 KB
/
sensor_download.html
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
<html>
<head>
<title>CrowdStrike Falcon Sensor Download :: Falconjs Example</title>
<script src="sensor_download.js"></script>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
border-style: dotted;
}
</style>
</head>
<body>
<div id="loginPopup">
<div id="popupForm">
<form action="javascript:sensor_download.onLogin()" id="loginForm">
<h2>CrowdStrike API: Please Log in</h2>
<label for="clientId">
<strong>Client Id</strong>
</label>
<input type="password" id="clientId" placeholder="Your API Client ID" name="clientId" required>
<br/>
<label for="clientSecret">
<strong>Client Secret</strong>
</label>
<input type="password" id="clientId" placeholder="Your Api Client Secret" name="clientSecret" required>
<br/>
<button type="submit">Log in</button>
</form>
</div>
</div>
</body>
</html>