Overview
Comment: | Reverted [317e74ef9b], moving PIN dialog changes to a different branch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ecf15c25f85b5fb7684dca4136a9f4be |
User & Date: | rkeene on 2017-03-09 01:19:31 |
Other Links: | manifest | tags |
Context
2017-03-09
| ||
02:15 | ChromeOS: Fix debug check-in: 1c45a8940d user: rkeene tags: trunk | |
01:20 | Updated PIN dialog from Google Leaf check-in: e53bb33148 user: rkeene tags: chrome-pin-dialog-update | |
01:19 | Reverted [317e74ef9b], moving PIN dialog changes to a different branch check-in: ecf15c25f8 user: rkeene tags: trunk | |
01:16 | Updated to include original request when an error occurs check-in: 9e3e9917fe user: rkeene tags: trunk | |
Changes
Modified build/chrome/pin.html from [40c7a5a8c8] to [80f230e669].
1 2 3 4 5 6 7 | <html> <head> <title>CACKey PIN Entry</title> <style> body { margin: 0px; } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < | > > > | > > | | > | > | | > > | | | | > > | | < | 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>CACKey PIN Entry</title> <style> body { margin: 0px; } </style> <script type="text/javascript" src="pin.js"></script> </head> <body bgcolor="#e4e4e4" color="#000000"> <form> <table width="100%" border="0" cellspacing="5" cellpadding="0"> <tr width="100%" align="left" valign="bottom"> <td rowspan="4"><img src="pin-icon.png" alt=""></td> </tr> <tr width="100%" align="left" valign="bottom"> <td></td> <td colspan="2"><div id="prompt" style="font-size: 0.8em;">PIN Entry Required</div></td> </tr> <tr width="100%" align="left" valign="center"> <td></td> <td>PIN:</td> <td><input type="password" name="pin" id="pin" style="width: 100%;" autofocus></td> </tr> <tr width="100%" align="right" valign="top"> <td></td> <td colspan="2"> <input type="button" class="button" name="ok" id="ok" value="OK" style="min-width: 4em;"> <input type="button" class="button" name="cancel" id="cancel" value="Cancel" style="min-width: 4em;"> </td> </tr> </table> </form> </body> </html> |