registration.pug 5.59 KB
Newer Older
1
doctype html
2
html(lang="de")
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
  head
    title= "Create New Account"
    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="https://transfer.hft-stuttgart.de/css/bootstrap/bootstrap.css")
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
    style.
        .collapse {
            display: none;
        }
        .collapse.in {
            display: block;
        }
        .collapsing {
            position: relative;
            height: 0;
            overflow: hidden;
            -webkit-transition-timing-function: ease;
            -o-transition-timing-function: ease;
            transition-timing-function: ease;
            -webkit-transition-duration: .35s;
            -o-transition-duration: .35s;
            transition-duration: .35s;
            -webkit-transition-property: height,visibility;
            -o-transition-property: height,visibility;
            transition-property: height,visibility;
        }
        .warning {
            color: red;
            font-size: 11px;
        }
  body
    div(class="container-fluid")
        div(class="row")
            div(class="col-md-6 offset-md-2")
38
                h3(class="mb-3 font-weight-bold") Neues Benutzerkonto anlegen
39
40
41
42
43
44
45
46
47
48
            div(class="col-md-6 offset-md-3")
                if successes
                    for success in successes
                        div.alert.alert-success.alert-dismissible #{ success }
                            a(class="close", href="#", data-dismiss="alert", aria-label="close") ×
                if errors
                    for error, i in errors
                        div.alert.alert-danger.alert-dismissible.fade.show #{ error }
                            a(class="close", href="#", data-dismiss="alert", aria-label="close") ×
                form(method="POST")
49
                    h5(class="mb-3 font-weight-bold") Anmeldedaten
50
51
                    div(class='form-row')
                        div(class='form-group col-md-6')
52
                            input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="E-Mail-Adresse*" required)
53
54
                            span#emailWarning(class='warning')
                        div(class="form-group col-md-6")
55
                            input#inputPassword(name="inputPassword", type="password", class="form-control", data-toggle="password", placeholder="Passwort*" required)
56
                            span#passwordWarning(class='warning')
57
                    h5(class="mb-3 font-weight-bold") Benutzerprofil
58
                    div(class="form-row")
59
60
61
                        div(class='form-group col-md-2')
                            select#inputSalutation(name="inputSalutation", class="form-control")
                                option(value="") - Anrede -
62
                                option(value="Herr") Herr
63
64
65
66
67
68
                                option(value="Frau") Frau
                                option(value="Divers") Divers
                        div(class='form-group col-md-2')
                            select#inputTitle(name="inputTitle", class="form-control")
                                option(value="") - Titel -
                                option(value="Prof.") Prof.
69
                                option(value="Dr.") Dr.
70
71
                                option(value="Dipl.-Ing.") Dipl.-Ing.
                                option(value="etc.") etc.
72
                        div(class='form-group col-md-4')
Rosanny Sihombing's avatar
Rosanny Sihombing committed
73
                            input#inputFirstname(name="inputFirstname", type="text", class="form-control", placeholder="Vorname*" required)
74
                        div(class='form-group col-md-4')
Rosanny Sihombing's avatar
Rosanny Sihombing committed
75
                            input#inputLastname(name="inputLastname", type="text", class="form-control", placeholder="Nachname*" required)
76
77
78
79
80
                    div(class="form-group")
                        input#inputOrganisation(name="inputOrganisation", type="text", class="form-control", placeholder="Unternehmen")
                    div(class="form-group")
                        input#inputIndustry(name="inputIndustry", type="text", class="form-control", placeholder="Branche")
                    div(class="form-group")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
81
                        input#inputSpeciality(name="inputSpeciality", type="text", class="form-control", placeholder="Fachgebiete")
82
83
                    p <em><small>* Pflichtfeld</small></em>
                    input#submitBtn(type="submit", class="btn btn-outline-dark btn-block", value="Senden" disabled)
84
                br
85
                p(class="text-center") Sie haben bereits ein Benutzerkonto? <a href="/account/">Melden Sie sich hier an</a>.
86
87
88
89
90
91
92
93
94
95
                    

    // 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")
    // toggle password
    script(src='https://unpkg.com/bootstrap-show-password@1.2.1/dist/bootstrap-show-password.min.js')
    // M4_LAB
Rosanny Sihombing's avatar
Rosanny Sihombing committed
96
97
98
    script(src="/js/generalFunction.js")
    script(src="/js/registration.js")
    script(src="https://transfer.hft-stuttgart.de/js/headfoot.js")