|
Revision 10027, 1.5 kB
(checked in by mootoh, 5 years ago)
|
|
websites/idavailability: add help page.
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8" ?> |
|---|
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"> |
|---|
| 4 | <head> |
|---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|---|
| 6 | <meta http-equiv="Content-Script-Type" content="text/javascript" /> |
|---|
| 7 | <link href="style.css" rel="stylesheet" type="text/css" /> |
|---|
| 8 | <title>ID Availability</title> |
|---|
| 9 | <script type="text/javascript" src="jquery.js"></script> |
|---|
| 10 | <script type="text/javascript" src="idavailability.js"></script> |
|---|
| 11 | <script type="text/javascript"> |
|---|
| 12 | $(document).ready(function() { |
|---|
| 13 | bootstrap(); |
|---|
| 14 | }); |
|---|
| 15 | </script> |
|---|
| 16 | </head> |
|---|
| 17 | <body> |
|---|
| 18 | <div id="head"> |
|---|
| 19 | <div id="menu"> |
|---|
| 20 | <a href="http://wedata.net/databases/idAvailability/items">Edit</a> |
|---|
| 21 | <a href="http://blog.deadbeaf.org/">Feedback</a> |
|---|
| 22 | <a href="help.html">Help</a> |
|---|
| 23 | </div> |
|---|
| 24 | <h1>ID Availability</h1> |
|---|
| 25 | </div> |
|---|
| 26 | <div id="main"> |
|---|
| 27 | <div id="input"> |
|---|
| 28 | <p>Check the availability of your ID for various sites.</p> |
|---|
| 29 | <form onsubmit="return checkId();"> |
|---|
| 30 | <label>ID: </label> |
|---|
| 31 | <input type="text" name="id" /> |
|---|
| 32 | <input type="button" value="check !" onclick="return checkId();" /> |
|---|
| 33 | </form> |
|---|
| 34 | </div> |
|---|
| 35 | <div id="out"></div> |
|---|
| 36 | <div id="result_out"> |
|---|
| 37 | <span id="result"></span> |
|---|
| 38 | </div> |
|---|
| 39 | <h2>Sites:</h2> |
|---|
| 40 | <p><span style="color:green; background-color:green"> </span> is available, and |
|---|
| 41 | <span style="color:red; background-color:red"> </span> has that ID already.</p> |
|---|
| 42 | <div id="sites"></div> |
|---|
| 43 | </div> |
|---|
| 44 | </body> |
|---|