-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1711 lines (1343 loc) · 103 KB
/
index.html
File metadata and controls
1711 lines (1343 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>admin.digital - Cloud für die öffentliche Verwaltung</title>
<meta name="keywords"
content="admin.digital, OneGov Cloud, E-Government, Gemeinde, Kanton, Gemeindeportal, Website, CMS, Reservationssystem, Online-Schalter, Online-Formulare" />
<meta name="description"
content="admin.digital ist eine bewährte und sichere Cloud Plattform für Schweizer Kantone und Gemeinden: Formulare, Reservationen, Verzeichnisse, Webauftritt" />
<meta property="og:site_name" content="admin.digital">
<meta property="og:url" content="https://www.admin.digital/">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.admin.digital" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Cloud für die öffentliche Verwaltung" />
<meta property="og:description"
content="admin.digital ist eine bewährte und sichere Cloud Plattform für Schweizer Kantone und Gemeinden." />
<meta property="og:image" content="https://www.admin.digital/static/images/og-admin-digital.png" />
<link rel="icon" href="static/images/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="icon" href="static/images/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="static/images/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="static/manifest.webmanifest">
<!-- Bootstrap CSS -->
<link href="static/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="static/highlight/styles/vs.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="static/fonts.css">
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="static/custom.css">
<link rel="stylesheet" href="static/glider.min.css">
<link href="static/aos.css" rel="stylesheet">
<script defer data-domain="admin.digital" src="https://analytics.seantis.ch/js/script.js"></script>
</head>
<body>
<!-- <div class="announcement"><a href="https://www.seantis.ch/news/swisscom-seantis-partnerschaft/">Swisscom Trust
Services und seantis besiegeln Partnerschaft</a>
</div> -->
<div class="announcement"><a href="https://docs.admin.digital">Digitales Benutzerhandbuch admin.digital 🧑🏻💻</a>
</div>
<header class="header-2">
<nav class="navbar navbar-expand-lg navbar-light pt-4">
<div class="container">
<a class="navbar-brand" href="./"><img src="static/images/logo.svg?h=86818e96"
alt="logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link menu-regular" href="#features">Digitale Services</a>
</li>
<li class="nav-item">
<a class="nav-link menu-regular" href="datenschutz/">Datenschutz</a>
</li>
<li class="nav-item">
<a class="nav-link menu-regular" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link menu-regular" href="neuerungen/alle/">Neuerungen</a>
</li>
</ul>
<a href="mailto:info@seantis.ch" class="button-lg-stroke">Kontakieren Sie uns</a>
</div>
</div>
</nav>
</header>
<section>
<div class="header-content h2-content">
<div class="container">
<div class="row column-reverse">
<div class="col">
<h1 class="heading-1">Cloud für die öffentliche Verwaltung🇨🇭</h1>
<p class="paragraph-medium">admin.digital ist die bewährte und
sichere Cloud-Plattform für Schweizer Kantone und Gemeinden.
Entwickelt als Open Source Software in der Gemeinschaft des Vereins OneGov.ch und betrieben in
zertifizierten Schweizer Rechenzentren. Informationssicherheit und Datenschutz stehen an
erster Stelle.
</p>
<!-- <a href="https://start.onegovcloud.ch" class="button-lg-fill start">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-cloud-upload"
width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffffff" fill="none"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1" />
<polyline points="9 15 12 12 15 15" />
<line x1="12" y1="12" x2="12" y2="21" />
</svg>
jetzt testen
</a> -->
<a href="https://docs.admin.digital/services/" class="button-lg-stroke start start-wide">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-cloud-upload"
width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1" />
<polyline points="9 15 12 12 15 15" />
<line x1="12" y1="12" x2="12" y2="21" />
</svg>
Open Source GovTech Services
</a>
</div>
<div class="col-md-6 col-xl-6 offset-md-1 offset-lg-0 hero-image-col">
<img src="static/images/ogc.png" class="img-fluid">
<img class="sms" src="static/images/swissmade.png?h=42dd8cbc">
</div>
</div>
</div>
</div>
</section>
<section class="customers">
<div class="container" data-aos="fade-up">
<div id="customerLogoCarousel" class="brand-logo text-center carousel slide" data-bs-ride="carousel" data-bs-interval="3000">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/zg.svg?h=9b3d1e9b" alt="Kanton Zug">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/bs.png?h=7603bb48" alt="Kanton Basel-Stadt">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/sg.svg?h=74c126b4" alt="Kanton St. Gallen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/sz.svg?h=a13e14d3" alt="Kanton Schwyz">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/gr.svg?h=170dbd09" alt="Kanton Graubünden">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ar.svg?h=d6ebc670" alt="Kanton Appenzell Ausserrhoden">
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/gl.svg?h=1e6eef6e" alt="Kanton Glarus">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/lu.svg?h=7413f3c8" alt="Kanton Luzern">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ai.svg?h=84dbccfe" alt="Appenzell Innerrhoden">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/sh.svg?h=5dcd69f6" alt="Kanton Schaffhausen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/bl.svg?h=f440ad6b" alt="Kanton Basel-Landschaft">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/stadt-bern.svg?h=3b23d6ac" alt="Stadt Bern">
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/stadt-wil.svg?h=b26fed1b" alt="Stadt Wil">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/winterthur.svg?h=529702fe" alt="Stadt Winterthur">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/privatim.png?h=99a16991" alt="privatim - Konferenz der schweizerischen Datenschutzbeauftragten">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ersigen.png?h=20d9fa1a" alt="Gemeinde Ersigen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ebikon.png?h=5e7b1a5d" alt="Gemeinde Ebikon">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/duerrenaesch.svg?h=0f75dcda" alt="Gemeinde Dürrenäsch">
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/lauerz.png?h=be5e1025" alt="Gemeinde Lauerz">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/neuheim.png?h=a725543f" alt="Gemeinde Neuheim">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/steinhausen.png?h=b7406e14" alt="Gemeinde Steinhausen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/huenenberg.png?h=fdd55abd" alt="Gemeinde Hünenberg">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ottenbach.png?h=333e19aa" alt="Gemeinde Ottenbach">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/risch-rotkreuz.png?h=da8e3a8f" alt="Gemeinde Risch Rotkreuz">
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/besenbueren.png?h=9e08f0fd" alt="Gemeinde Besenbüren">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/musikschule-rontal.svg?h=91086bc2" alt="Musikschule Rontal">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ph-zug.png?h=b3665d5a" alt="PH Zug">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/pro-juventute.svg?h=86ee554a" alt="Pro Juventute">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/universitaet-bern.svg?h=470f008b" alt="Universität Bern">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/neuenkirch.svg?h=f95b63d3" alt="Gemeinde Neuenkirch">
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/gemeinde-horw.png?h=c180f26d" alt="Gemeinde Horw">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/meggen.png?h=e32a59d4" alt="Gemeinde Meggen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/baar.png?h=e9bc63ba" alt="Baar">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/berzirk-gersau.jpg?h=ed7c55f8" alt="Gersau SZ">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/stadt-zug.svg?h=5bdcbd8a" alt="Stadt Zug">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/regionales-bauamt-oberseetal.svg?h=15ef0c91" alt="Regionales Bauamt Oberseetal">
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/hirzkirch.png?h=a515a970" alt="Hitzkirch">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/beromuenster.svg?h=11b86331" alt="Beromünster">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/weggis.svg?h=819d3f38" alt="Weggis">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/wolhusen.png?h=01ef07f4" alt="Wolhusen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/willisau.svg?h=7bfdd4f0" alt="Willisau">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/rothenburg.svg?h=b0ac074e" alt="Rothenburg">
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/zell.png?h=1f6e3926" alt="Zell">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/buchrain.png?h=7c4c5dc7" alt="Buchrain">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/emmen.svg?h=3f53dd75" alt="Emmen">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/schuepfheim.png?h=70313dea" alt="Schüpfheim">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/kriens.svg?h=072d3b37" alt="Kriens">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/regionales-bauamt-rbs.svg?h=2c71dce8" alt="Regionales Bauamt RBS">
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row align-items-center">
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/sempach.png?h=75161728" alt="Sempach">
</div>
</div>
<div class="col-6 col-md-4 col-lg-2">
<div class="card">
<img src="static/images/customer-logos/ruswil.jpg?h=3cc8cef9" alt="Ruswil">
</div>
</div>
</div>
</div>
</div>
<div class="carousel-indicators customers-pagination">
<button
type="button"
data-bs-target="#customerLogoCarousel"
data-bs-slide-to="0"
class="active" aria-current="true"
aria-label="Slide 1"></button>
<button
type="button"
data-bs-target="#customerLogoCarousel"
data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button
type="button"
data-bs-target="#customerLogoCarousel"
data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button
type="button"
data-bs-target="#customerLogoCarousel"
data-bs-slide-to="3"
aria-label="Slide 4"></button>
<button
type="button"
data-bs-target="#customerLogoCarousel"
data-bs-slide-to="4"
aria-label="Slide 5"></button>
</div>
</div>
</div>
</section>
<section class="contact contact6-wrapper blue5-bg">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-6 col-lg-5 col-xl-4 offset-xl-1 d-flex flex-column justify-content-between">
<div>
<h2 class="heading-2">Kontakt</h2>
<p class="paragraph-regular">Seantis AG<br>
Pilatusstrasse 3<br>
6003 Luzern<br><br>
<a href="http://www.seantis.ch">www.seantis.ch</a>
</p>
<div class="nav nav-tabs" id="nav-tab" role="tablist">
<a class="nav-link active paragraph-regular" id="nav-brochure-tab" data-bs-toggle="tab"
href="#phone" role="tab" aria-selected="true">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M5.88235 4H9.64706L11.5294 8.70588L9.17647 10.1176C10.1844 12.1614 11.8386 13.8156 13.8824 14.8235L15.2941 12.4706L20 14.3529V18.1176C20 18.6169 19.8017 19.0957 19.4487 19.4487C19.0957 19.8017 18.6169 20 18.1176 20C14.4464 19.7769 10.9837 18.2179 8.3829 15.6171C5.78212 13.0163 4.22311 9.55363 4 5.88235C4 5.38312 4.19832 4.90434 4.55133 4.55133C4.90434 4.19832 5.38312 4 5.88235 4Z"
fill="#ffffff" />
</svg>+41 41 511 22 50
</a>
<a class="nav-link paragraph-regular" id="nav-business-tab" data-bs-toggle="tab" href="#email"
role="tab" aria-controls="nav-business" aria-selected="false">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M5.77778 6H18.2222C18.948 6 19.5721 6.43486 19.8484 7.05824L12 12.2905L4.15163 7.05826C4.42786 6.43488 5.05203 6 5.77778 6ZM4 8.75995V16.6667C4 17.6485 4.79594 18.4444 5.77778 18.4444H18.2222C19.2041 18.4444 20 17.6485 20 16.6667V8.75992L12.416 13.8159C12.1641 13.9839 11.8359 13.9839 11.584 13.8159L4 8.75995Z"
fill="#ffffff" />
</svg>fabian.reinhard@seantis.ch
</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-7 col-xl-6">
<div class="tab-content custom-tab-content" id="nav-tabContent">
<div class="tab-pane fade show active custom-tab-pane" id="phone" role="tabpanel"
aria-labelledby="nav-brochure-tab">
<div class="contact-form">
<div class="row g-4">
<p class="paragraph-medium">Fabian Reinhard zeigt Ihnen gerne die Möglichkeiten und
Anwendungen für Ihre Bedürfnisse auf.</p>
<img src="static/images/Fabian-Reinhard.jpg?h=8ab34442" alt="Fabian Reinhard">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="featured-section featured7">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-10 col-lg-6 col-xl-6">
<h2 class="heading-2">Für Gemeinden, Kantone und Organisationen</h2>
</div>
</div>
<div class="row align-items-center flex-column-reverse flex-lg-row">
<div class="col-lg-7 col-xl-6">
<div class="featured-content">
<div class="row">
<div class="col-12 featured-single">
<div class="featured-single-left">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none"
xmlns="http://www.w3.org/2000/svg">
<rect width="47.1579" height="48" rx="10" fill="#E9ECEF" />
<path
d="M33.3333 18H14.6667C13.1939 18 12 19.1709 12 20.6154V32.3846C12 33.8291 13.1939 35 14.6667 35H33.3333C34.8061 35 36 33.8291 36 32.3846V20.6154C36 19.1709 34.8061 18 33.3333 18Z"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M19 18V15.5C19 14.837 19.2897 14.2011 19.8055 13.7322C20.3212 13.2634 21.0207 13 21.75 13H27.25C27.9793 13 28.6788 13.2634 29.1945 13.7322C29.7103 14.2011 30 14.837 30 15.5V18"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M12 26C15.7221 27.9725 19.832 29 24 29C28.168 29 32.2779 27.9725 36 26"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<circle cx="24.25" cy="24.25" r="0.75" fill="#3445ED" stroke="#dc0018" />
</svg>
</div>
<div class="featured-single-right">
<h6 class="heading-6">Gemeinden</h6>
<p class="paragraph-regular">Online-Schalter, Webauftritt,
Veranstaltungskalender, Raumreservationen, Amtliche Publikationen</p>
</div>
</div>
<div class="col-12 featured-single">
<div class="featured-single-left">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none"
xmlns="http://www.w3.org/2000/svg">
<rect width="47.1579" height="48" rx="10" fill="#E9ECEF" />
<path
d="M12.334 25.3333C14.7114 25.6158 16.9247 26.69 18.6177 28.3829C20.3106 30.0759 21.3848 32.2891 21.6673 34.6666C22.8459 33.9871 23.8317 33.0184 24.5316 31.8518C25.2315 30.6853 25.6224 29.3596 25.6673 27.9999C27.9061 27.2123 29.8611 25.7786 31.2851 23.8799C32.7091 21.9813 33.5381 19.703 33.6673 17.3333C33.6673 16.2724 33.2459 15.255 32.4957 14.5048C31.7456 13.7547 30.7282 13.3333 29.6673 13.3333C27.2975 13.4625 25.0193 14.2915 23.1206 15.7155C21.222 17.1394 19.7882 19.0944 19.0007 21.3333C17.641 21.3782 16.3153 21.769 15.1487 22.4689C13.9822 23.1689 13.0134 24.1547 12.334 25.3333"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M16.3327 26.6667C14.945 27.4502 13.8229 28.6302 13.1102 30.0555C12.3975 31.4808 12.1268 33.0865 12.3327 34.6667C13.9129 34.8726 15.5186 34.6019 16.9439 33.8892C18.3692 33.1765 19.5492 32.0544 20.3327 30.6667"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M26.9993 21.3334C27.7357 21.3334 28.3327 20.7365 28.3327 20.0001C28.3327 19.2637 27.7357 18.6667 26.9993 18.6667C26.263 18.6667 25.666 19.2637 25.666 20.0001C25.666 20.7365 26.263 21.3334 26.9993 21.3334Z"
fill="#3445ED" stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</div>
<div class="featured-single-right">
<h6 class="heading-6">Kantone</h6>
<p class="paragraph-regular">Formulare, Wahlen, Abstimmungen, Amtliche Publikationen,
Staatskalender, Reservationen, Verzeichnisse</p>
</div>
</div>
<div class="col-lg-12 featured-single">
<div class="featured-single-left">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none"
xmlns="http://www.w3.org/2000/svg">
<rect width="47.1579" height="48" rx="10" fill="#E9ECEF" />
<path
d="M33.6667 18.6665H12.3333C11.597 18.6665 11 19.2635 11 19.9998V22.6665C11 23.4029 11.597 23.9998 12.3333 23.9998H33.6667C34.403 23.9998 35 23.4029 35 22.6665V19.9998C35 19.2635 34.403 18.6665 33.6667 18.6665Z"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M23 18.6665V35.9998" stroke="#dc0018" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
<path
d="M32.3327 24V33.3333C32.3327 34.0406 32.0517 34.7189 31.5516 35.219C31.0515 35.719 30.3733 36 29.666 36H16.3327C15.6254 36 14.9472 35.719 14.4471 35.219C13.947 34.7189 13.666 34.0406 13.666 33.3333V24"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M16.9993 18.6668C16.1153 18.6668 15.2674 18.3156 14.6423 17.6905C14.0172 17.0653 13.666 16.2175 13.666 15.3334C13.666 14.4494 14.0172 13.6015 14.6423 12.9764C15.2674 12.3513 16.1153 12.0001 16.9993 12.0001C18.2856 11.9777 19.546 12.6018 20.6163 13.791C21.6866 14.9802 22.5171 16.6793 22.9993 18.6668C23.4816 16.6793 24.3121 14.9802 25.3824 13.791C26.4526 12.6018 27.7131 11.9777 28.9993 12.0001C29.8834 12.0001 30.7313 12.3513 31.3564 12.9764C31.9815 13.6015 32.3327 14.4494 32.3327 15.3334C32.3327 16.2175 31.9815 17.0653 31.3564 17.6905C30.7313 18.3156 29.8834 18.6668 28.9993 18.6668"
stroke="#dc0018" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</div>
<div class="featured-single-right">
<h6 class="heading-6">Organisationen</h6>
<p class="paragraph-regular">Formulare, Webauftritt, Verzeichnisse, Reservationen,
elektronisches Siegel</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5 col-xl-6 featured-img">
<img src="static/images/ebikon.png?h=e77c1ae4" alt="Reservationen Gemeinde Ebikon">
</div>
</div>
</div>
</section>
<section class="featured-section featured3 text-center">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-10 offset-lg-1 col-xl-10 offset-xl-1">
<h2 class="heading-2" id="features">Digitale <mark class="heading-2">Services</mark></h2>
<p class="paragraph-medium">admin.digital bietet eine umfassende digitale Plattform für Gemeinden und
Kantone: für Online-Portale mit einfacherem Zugang zu Informationen und Dienstleistungen.</p>
</div>
</div>
<div class="featured-content">
<div class="row">
<div class="col-xl-10 offset-xl-1">
<div class="row">
<div class="col-md-6 col-md-6 col-lg-4 featured-single border-bottom">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-qrcode"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<rect x="4" y="4" width="6" height="6" rx="1" />
<line x1="7" y1="17" x2="7" y2="17.01" />
<rect x="14" y="4" width="6" height="6" rx="1" />
<line x1="7" y1="7" x2="7" y2="7.01" />
<rect x="4" y="14" width="6" height="6" rx="1" />
<line x1="17" y1="7" x2="17" y2="7.01" />
<line x1="14" y1="14" x2="17" y2="14" />
<line x1="20" y1="14" x2="20" y2="14.01" />
<line x1="14" y1="14" x2="14" y2="17" />
<line x1="14" y1="20" x2="17" y2="20" />
<line x1="17" y1="17" x2="20" y2="17" />
<line x1="20" y1="17" x2="20" y2="20" />
</svg>
<h6 class="heading-6">Online-Schalter mit Formulareingang</h6>
<p class="paragraph-regular">Die Inbox bietet ein Serviceticket-System für alle über
Online-Formulare übermittelten Daten. Tickets werden einer Dienststelle zugewiesen und
strukturiert bearbeitet (inkl. automatischer Benachrichtigung bei Statusänderungen).</p>
</div>
<div class="col-md-6 col-lg-4 featured-single border border-top-0">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-calendar-time"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M11.795 21h-6.795a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4" />
<circle cx="18" cy="18" r="4" />
<path d="M15 3v4" />
<path d="M7 3v4" />
<path d="M3 11h16" />
<path d="M18 16.496v1.504l1 1" />
</svg>
<h6 class="heading-6">Reservationen mit Online-Bezahlung</h6>
<p class="paragraph-regular">Im Kalender informieren sich die User über freie Termine und
buchen diese direkt – überall und jederzeit.
Das Online-Portal bietet so grösstmögliche Flexibilität bei der Terminbuchung und stellt
die effiziente Abwicklung durch die Verwaltung sicher.</p>
</div>
<div class="col-md-6 col-lg-4 featured-single border-bottom">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-users"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<circle cx="9" cy="7" r="4" />
<path d="M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
<path d="M21 21v-2a4 4 0 0 0 -3 -3.85" />
</svg>
<h6 class="heading-6">Personen und Verzeichnisse</h6>
<p class="paragraph-regular">Die konfigurierbaren Verzeichnisse schaffen den Überblick über
Behörden, Personen und Zuständigkeiten. Der Datenexport bzw. -import ist jederzeit
einfach möglich, sodass die Daten einfach weiterverarbeitet werden können.</p>
</div>
<div class="col-md-6 col-lg-4 featured-single border-left">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-certificate"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<circle cx="15" cy="15" r="3" />
<path d="M13 17.5v4.5l2 -1.5l2 1.5v-4.5" />
<path
d="M10 19h-5a2 2 0 0 1 -2 -2v-10c0 -1.1 .9 -2 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -1 1.73" />
<line x1="6" y1="9" x2="18" y2="9" />
<line x1="6" y1="12" x2="9" y2="12" />
<line x1="6" y1="15" x2="8" y2="15" />
</svg>
<h6 class="heading-6">Siegel</h6>
<p class="paragraph-regular">In Zusammenarbeit mit der Swisscom bietet admin.digital ein
elektronisches Siegel. Amtliche Dokumente können so digital publiziert werden.</p>
</div>
<div class="col-md-6 col-lg-4 featured-single border border-top-0 border-bottom-0">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-file-search"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M14 3v4a1 1 0 0 0 1 1h4" />
<path d="M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5" />
<circle cx="16.5" cy="17.5" r="2.5" />
<line x1="18.5" y1="19.5" x2="21" y2="22" />
</svg>
<h6 class="heading-6">Volltextsuche</h6>
<p class="paragraph-regular">Alle Inhalte werden für die zentrale Volltextsuche indexiert.
Auch Dokumente (PDFs) werden in den Suchindex aufgenommen und sind so leicht auffindbar.
</p>
</div>
<div class="col-md-6 col-lg-4 featured-single">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-accessible"
width="56" height="56" viewBox="0 0 24 24" stroke-width="1.5" stroke="#dc0018"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />