-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (36 loc) · 1.43 KB
/
index.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
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Run in Postman</title>
<link rel="stylesheet" href="misc/main.css">
</head>
<body>
<div class="button">
<h1>Run in Postman</h1>
<hr />
<ol>
<li>
<p class="msg">Input value, and <b>Save</b>.</p>
<form method="post" onsubmit="return createEnv();">
<label for="secretstring">Passphrase</label>
<input type="text" id="secret-string" name="secretstring"><br><br>
<input type="submit" value="Save">
</form>
</li>
<li>
<p class="msg">
Then click the <b>Run in Postman</b> button to fork the collection and
environment into your own instance of Postman. The environment will contain your passphrase.
</p>
<div class="postman-run-button" data-postman-action="collection/fork"
data-postman-var-1="1559979-8aa8a323-6308-429c-90ca-e85d1d0bb33e"
data-postman-collection-url="entityId=1559979-8aa8a323-6308-429c-90ca-e85d1d0bb33e&entityType=collection&workspaceId=ef3cdedd-f58c-4492-9ed0-4dcf456987b2">
</div>
</li>
</ol>
</div>
<script src="app.js"></script>
</body>
</html>