profile.pug 7.65 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
doctype html
2
html(lang="de")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
3
  head
Rosanny Sihombing's avatar
Rosanny Sihombing committed
4
    title= "Benutzerprofil"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
5
6
    meta(charset="UTF-8")
    meta(name="viewport", content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no")
7
8
    link(rel="stylesheet", type="text/css", href="/css/bootstrap.min.css")
    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")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
10
11
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
  body
12
    div(class="container")
13
        div(class="row min-vh-100 flex-column flex-md-row")
14
            aside(class="col-12 col-md-3 p-0 flex-shrink-1")
15
16
17
18
                nav(class="navbar navbar-expand flex-md-column flex-row align-items-start py-2")
                    div(class="collapse navbar-collapse")
                        ul(class="flex-md-column flex-row navbar-nav w-100 justify-content-between")
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
19
                                a(class="nav-link pl-0 text-nowrap" href="/account/")
20
                                    span(class="font-weight-bold color_black") #{user.firstName} #{user.lastName}
21
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
22
                                a(class="nav-link pl-0" href="/account/profile")
23
24
                                    i(class="fa fa-user fa-fw color_black")
                                    span(class="d-none d-md-inline color_black") Benutzerprofil
Rosanny Sihombing's avatar
Rosanny Sihombing committed
25
                            if user.is_m4lab_idp
26
27
28
29
                                li(class="nav-item")
                                    a(class="nav-link pl-0" href="/account/security")
                                        i(class="fa fa-lock fa-fw")
                                        span(class="d-none d-md-inline") Sicherheitseinstellungen
30
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
31
                                a(class="nav-link pl-0" href="/account/services")
32
33
34
                                    i(class="fa fa-tasks fa-fw")
                                    span(class="d-none d-md-inline") Projekte und Dienste
                            li(class="nav-item")
Varun Srivastava's avatar
Varun Srivastava committed
35
                                a(class="nav-link pl-0 color_red" href="/logout")
36
37
38
                                    i(class="fa fa-sign-out-alt fa-fw")
                                    span(class="d-none d-md-inline") Logout
            main(class="col bg-faded py-3 flex-grow-1")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
39
40
41
                nav(aria-label="breadcrumb")
                    ol(class="breadcrumb")
                        li(class="breadcrumb-item")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
42
                            a(href="/account/") Konto
Rosanny Sihombing's avatar
Rosanny Sihombing committed
43
44
                        li(class="breadcrumb-item active" aria-current="page") Benutzerprofil

Rosanny Sihombing's avatar
Rosanny Sihombing committed
45
46
47
48
49
50
                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") ×
Rosanny Sihombing's avatar
Rosanny Sihombing committed
51
52

                h3(class="pb-2") Mein Profil
53
                form#profileForm(method="POST", action="/account/updateProfile")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
54
                    div(class="form-row")
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
55
56
                        div(class='form-group col-md-2')
                            label(for="title") Anrede
57
                            select#inputSalutation(name="inputSalutation", class="form-control", value=user.salutation)
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
58
59
60
61
62
63
64
65
66
67
                                option(value="") - Anrede -
                                option(value="Herr") Herr
                                option(value="Frau") Frau
                                option(value="Divers") Divers
                                script.
                                    var salutationOptions = document.getElementById('inputSalutation').options;
                                    for (i=0; i < salutationOptions.length; i++) {
                                        if (salutationOptions[i].value == '#{user.salutation}')
                                            salutationOptions[i].selected = true;
                                    }
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
68
                        div(class='form-group col-md-2')
69
                            label(for="title") Titel
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
70
                            select#inputTitle(name="inputTitle", class="form-control", value=user.title)
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
71
                                option(value="") - Titel -
72
                                option(value="Prof.") Prof.
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
73
                                option(value="Dr.") Dr.
74
                                option(value="Dipl.-Ing.") Dipl.-Ing.
Rosanny Sihombing's avatar
Rosanny Sihombing committed
75
76
77
78
79
80
                                script.
                                    var titleOptions = document.getElementById('inputTitle').options;
                                    for (i=0; i < titleOptions.length; i++) {
                                        if (titleOptions[i].value == '#{user.title}')
                                            titleOptions[i].selected = true;
                                    }
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
81
                        div(class='form-group col-md-2')
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
82
                            label(for="firstname") Vorname
Rosanny Sihombing's avatar
Rosanny Sihombing committed
83
                            input#inputFirstname(name="inputFirstname", type="text", class="form-control", placeholder="Vorname", value=user.firstName, maxlength="45" required)
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
84
                        div(class='form-group col-md-2')
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
85
                            label(for="lastname") Nachname
Rosanny Sihombing's avatar
Rosanny Sihombing committed
86
                            input#inputLastname(name="inputLastname", type="text", class="form-control", placeholder="Nachname", value=user.lastName, maxlength="45" required)
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
87
88
                    div(class="form-row")
                        div(class='form-group col-md-8')
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
89
                            label(for="email") E-mail Adresse
Rosanny Sihombing's avatar
Rosanny Sihombing committed
90
                            input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="Email", value=user.email, maxlength="45" required)
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
91
92
93
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="organisation") Unternehmen
Rosanny Sihombing's avatar
Rosanny Sihombing committed
94
                            input#inputOrganisation(name="inputOrganisation", type="text", class="form-control", placeholder="Unternehmen", value=user.organisation, maxlength="45")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
95
96
97
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="industry") Branche
Rosanny Sihombing's avatar
Rosanny Sihombing committed
98
                            input#inputIndustry(name="inputIndustry", type="text", class="form-control", placeholder="Branche", value=user.industry, maxlength="45")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
99
100
101
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="speciality") Fachgebiete
Rosanny Sihombing's avatar
Rosanny Sihombing committed
102
                            input#inputSpeciality(name="inputSpeciality", type="text", class="form-control", placeholder="Fachgebiete", value=user.speciality, maxlength="100")                    
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
103
                    input(type="submit", class="btn btn-primary", value="Speichern")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
104
105
106
107
108
109
110

    // 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
111
    script(src="/js/headfoot.js")
Athanasios's avatar
Athanasios committed
112
    script(src="/js/mobile.js")