comparison client/src/components/systemconfiguration/MapLayers.vue @ 3603:2cf7e167dad9

client: configuration: prepared component for map layer configuration
author Markus Kottlaender <markus@intevation.de>
date Wed, 05 Jun 2019 09:38:59 +0200
parents
children 30a9fdac70f0
comparison
equal deleted inserted replaced
3602:77aa6c137a2f 3603:2cf7e167dad9
1 <template>
2 <div class="d-flex flex-column pb-4 border-bottom">
3 <h5 class="py-2 px-3 mb-2 m-0"><translate>Map Layers</translate></h5>
4 <div class="px-3 container-fluid">
5 <div class="row">
6 <div class="col-sm-6">
7 <div class="form-group">
8 <label for="ecdis-url" class="font-weight-bold">ECDIS URL</label>
9 <input
10 type="url"
11 class="form-control"
12 id="ecdis-url"
13 placeholder="https://..."
14 />
15 </div>
16 </div>
17 </div>
18 </div>
19 <div class="mt-4 px-3">
20 <a @click.prevent="submit" class="btn btn-info btn-sm text-white">
21 <translate>Send</translate>
22 </a>
23 </div>
24 </div>
25 </template>
26
27 <script>
28 /* This is Free Software under GNU Affero General Public License v >= 3.0
29 * without warranty, see README.md and license for details.
30 *
31 * SPDX-License-Identifier: AGPL-3.0-or-later
32 * License-Filename: LICENSES/AGPL-3.0.txt
33 *
34 * Copyright (C) 2018 by via donau
35 * – Österreichische Wasserstraßen-Gesellschaft mbH
36 * Software engineering by Intevation GmbH
37 *
38 * Author(s):
39 * Markus Kottländer <markus@intevation.de>
40 */
41
42 export default {
43 methods: {
44 submit() {}
45 }
46 };
47 </script>