| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>OliveTin</title>
- <link rel = "stylesheet" type = "text/css" href = "style.css" />
- <link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
- </head>
- <body>
- <main title = "main content">
- <fieldset id = "switcher">
- <button id = "showActions">Actions</button>
- <button id = "showLogs">Logs</button>
- </fieldset>
- <section id = "contentLogs" title = "Logs" hidden>
- <table>
- <thead>
- <tr>
- <th>Timestamp</th>
- <th>Log</th>
- <th>Exit Code</th>
- </tr>
- </thead>
- <tbody id = "logTableBody" />
- </table>
- </section>
- <section id = "contentActions" title = "Actions" hidden >
- <fieldset id = "rootGroup">
- </fieldset>
- </section>
- </main>
- <footer title = "footer">
- <p><img title = "application icon" src = "OliveTinLogo.png" height = "1em" class = "logo" /> OliveTin</p>
- <p>
- <a href = "https://docs.olivetin.app" target = "_new">Documentation</a> |
- <a href = "https://github.com/OliveTin/OliveTin/issues/new/choose" target = "_new">Raise an issue on GitHub</a> |
- <span id = "currentVersion">Version: ?</p>
- <a id = "availableVersion" href = "http://olivetin.app" target = "_blank" hidden>?</a>
- </p>
- </footer>
- <template id = "tplArgumentForm">
- <div class = "wrapper">
- <div>
- <span class = "icon" role = "icon"></span>
- <h2>Argument form</h2>
- </div>
- <div class = "arguments"></div>
- <div class = "buttons">
- <input name = "start" type = "submit" value = "Start">
- <button name = "cancel">Cancel</button>
- </div>
- </div>
- </template>
- <template id = "tplActionButton">
- <span role = "icon" title = "button icon" class = "icon">💩</span>
- <p role = "title" class = "title">Untitled Button</p>
- </template>
- <template id = "tplLogRow">
- <tr class = "logRow">
- <td class = "timestamp">?</td>
- <td>
- <span class = "icon" role = "icon"></span>
- <span class = "content">?</span>
-
- <details>
- <summary>stdout</summary>
- <pre class = "stdout">
- ?
- </pre>
- </details>
- <details>
- <summary>stderr</summary>
- <pre class = "stderr">
- ?
- </pre>
- </details>
- </td>
- <td class = "exitCode">?</td>
- </tr>
- </template>
- <script type = "module" src = "main.js"></script>
- </body>
- </html>
|