contact.pug 4.38 KB
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
3
4
5
6
7
doctype html
html(lang="de")
  head
    title= "Kontakt"
    meta(charset="UTF-8")
    meta(name="viewport", content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no")
    link(rel="stylesheet", type="text/css", href="/css/bootstrap.min.css")
8
    link(rel="stylesheet", type="text/css", href="/css/m4lab.css")
Athanasios's avatar
Athanasios committed
9
    link(rel="stylesheet", type="text/css", href="/css/m4lab-mobile.css")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
10
11
12
13
14
    link(rel="stylesheet", type="text/css", href="/css/Contact-Form-Clean.css")
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
  body
    div(class="container")
        div(class="row")
Varun Srivastava's avatar
Varun Srivastava committed
15
            div(class="col-md-12 margin_bottom_40")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
16
                img(class="mx-auto" src="/img/Kontakt.jpg" width="100%")
17
    div(class="contact-clean background_eaeaea")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
18
19
20
21
22
23
        if flash.success
            div.alert.alert-success.alert-dismissible #{flash.success}
                a(class="close", href="#", data-dismiss="alert", aria-label="close") ×
        if flash.error
            div.alert.alert-danger.alert-dismissible.fade.show #{flash.error}
                a(class="close", href="#", data-dismiss="alert", aria-label="close") ×
Wolfgang Knopki's avatar
Wolfgang Knopki committed
24
25
26
27
28
29
30
31
        form(method="POST")
            h2(class="text_center") Kontaktieren Sie uns
            div(class="form-group")
                input#name(class="form-control" type="text" name="name" placeholder="Name")
            div(class="form-group")
                input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="E-Mail-Adresse*", maxlength="45" required)
            div(class="form-group")
                textarea#message(class="form-control" name="message" placeholder="Nachricht" rows="14")
32
            div(class="form-group")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
33
                input#submitBtn(class="btn btn-primary" type="submit" value="SENDEN")
Varun Srivastava's avatar
Varun Srivastava committed
34
    div(class="contact-clean contact_footer")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
35
        form
Varun Srivastava's avatar
Varun Srivastava committed
36
37
            p(class="m_top_25") <strong>Hochschule für Technik Stuttgart</strong><br/>Institut für Angewandte Forschung<br/>Innovative Hochschule - Projekt M4_LAB<br/>Schellingstr. 24<br/>70174 Stuttgart<br/>Deutschland<br/><br/><a href="mailto:support-transfer@hft-stuttgart.de">support-transfer@hft-stuttgart.de</a><br/><br/><a href="https://www.hft-stuttgart.de/">www.hft-stuttgart.de</a> / <a href="https://www.hft-stuttgart.de/M4LAB">www.hft-stuttgart.de/M4LAB</a><br/>
    div(class="background_8a348b")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
38
39
40
41
        div(class="container")
            div(class="row")
                div(class="col-md-4 col-lg-2")
                div(class="col-md-4 col-lg-8")
Varun Srivastava's avatar
Varun Srivastava committed
42
43
44
                    div(class="contact_foot_message")
                        img(class="d-flex d-lg-flex justify-content-center justify-content-lg-center align-items-lg-start mx-auto p_bottom_35" src="/img/Logo_TV1.png" width="100px")
                        h2(class="text-center color_8a348b") <strong>Transferportal</strong>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
45
46
47
48
49
50
51
52
53
54
55
                        p(class="text-center") Das Transferportal entsteht in einem Teilprojekt der Innovativen <a href="https://www.hft-stuttgart.de">Hochschule für Technik Stuttgart</a>. Im <a href="https://www.hft-stuttgart.de/forschung/innovative-hochschule-m4-lab">Innovationslabor M4_LAB</a> wird das Transferportal als eine Webpräsenz entwickelt, welches Wissen, Lösungen und Dienste für HFT-Mitglieder, externe Partner und die allgemeine Öffentlichkeit bereitstellt.<br/><br/>Es ergänzt die Informationen der allgemeinen HFT-Webseite durch konkrete Ergebnisse aus Forschung und Entwicklung, verfügbar in verschiedenster Form wie beispielsweise Daten, Dokumentationen und Software-Code.<br/><br/>Zudem stellt es Kollaborationsmittel für Projektpartner und später auch Partizipationsmöglichkeiten für die breite Öffentlichkeit bereit.
                div(class="col-md-4 col-lg-2")


    // jQuery
    script(src="https://code.jquery.com/jquery-3.3.1.min.js")
    script(src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js", integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1", crossorigin="anonymous")
    // Bootstrap
    script(src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous")
    // M4_LAB
    script(src="/js/headfoot.js")
Athanasios's avatar
Athanasios committed
56
    script(src="/js/mobile.js")