-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
26 lines (22 loc) · 867 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<h3>Please fill the following form and then click the extension icon again to login!</h3>
<form>
<fieldset>
<label>AWS Console Login Link from G Suite<span style="color: red">*</span></label>
<input id="saml_url" type="url" placeholder="https://accounts.google.com/o/saml2/initsso?idpid=xxx&spid=xxx&forceauthn=false" required="required"><br><br>
<label>Gmail Account</label>
<input id="google_account" type="email" placeholder="[email protected]"><br><br>
<label>AWS Account Name</label>
<input id="aws_account" type="text" placeholder="aws-account-name, eg: amazon"><br><br>
<input id="save" type="submit" value="save">
</fieldset>
</form>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>