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
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
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>`;
}