Add ui for setting max downloads, max time, and password.

This commit is contained in:
Donovan Preston
2018-09-24 12:30:27 -04:00
committed by Danny Coates
parent fe4eb1d582
commit 5ec2486c57
8 changed files with 134 additions and 5 deletions

10
android/pages/error.js Normal file
View File

@@ -0,0 +1,10 @@
const html = require('choo/html');
export default function error(_state, _emit) {
return html`<body>
<div id="white">
<h1>Error</h1>
<p>Sorry, an error occurred.</p>
</div>
</body>`;
}