-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
29 lines (29 loc) · 941 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
27
28
29
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="options.css" />
<script type="text/javascript" src="js/Options.js"></script>
<script type="text/javascript" src="options.js"></script>
<title>Workplace Status Options</title>
</head>
<body>
<div id="container">
<header>
<h3><img src="img/icon64.png" /> Workplace Status Options</h3>
</header>
<section>
<h2>Please enter your company</h2>
<form id="companyForm" action="#">
<input type="text" id="company" placeholder="e.g. FB if site is https://fb.facebook.com/" required />
<input type="submit" value="Save" />
</form>
<p>It is needed to connect to your Workplace site</p>
<div id="accessibility">
<h3>Check that site is accessible</h3>
<p>Mobile site: <a id="mobileSite" target="_blank"></a>, desktop site: <a id="desktopSite" target="_blank"></a></p>
</div>
</section>
<footer></footer>
</div>
</body>
</html>