diff options
Diffstat (limited to 'src/pages/options/sendTargets')
-rw-r--r-- | src/pages/options/sendTargets/sendTargets.html | 6 | ||||
-rw-r--r-- | src/pages/options/sendTargets/sendTargets.pug | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/pages/options/sendTargets/sendTargets.html b/src/pages/options/sendTargets/sendTargets.html index f372b3b0..f9f72efc 100644 --- a/src/pages/options/sendTargets/sendTargets.html +++ b/src/pages/options/sendTargets/sendTargets.html @@ -5,7 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="../../../assets/images/libredirect.svg"> <link href="../../stylesheets/styles.css" rel="stylesheet"> - <title>General</title> + <title>Send Files</title> </head> </html> <script type="module" src="../../../assets/javascripts/localise.js"></script> @@ -56,6 +56,10 @@ </section> <section class="option-block"> <div class="some-block option-block"> + <h1>Send Files</h1> + </div> + <hr> + <div class="some-block option-block"> <h4 data-localise="__MSG_enable__">Enable</h4> <input id="disable-sendTargets" type="checkbox"> </div> diff --git a/src/pages/options/sendTargets/sendTargets.pug b/src/pages/options/sendTargets/sendTargets.pug index 3017fa87..027aee79 100644 --- a/src/pages/options/sendTargets/sendTargets.pug +++ b/src/pages/options/sendTargets/sendTargets.pug @@ -1,7 +1,7 @@ doctype html html(lang="en") include ../../widgets/head.pug - title General + title Send Files script(type="module" src="../../../assets/javascripts/localise.js") body.option(dir="auto") include ../../widgets/links.pug @@ -9,6 +9,9 @@ body.option(dir="auto") section.option-block .some-block.option-block + h1 Send Files + hr + .some-block.option-block h4(data-localise="__MSG_enable__") Enable input#disable-sendTargets(type="checkbox") |