profile.pug 7.33 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
4
5
6
  head
    title= "User Profile"
    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")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
9
10
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
  body
11
    div(class="container")
12
        div(class="row min-vh-100 flex-column flex-md-row")
13
            aside(class="col-12 col-md-3 p-0 flex-shrink-1")
14
15
16
17
                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
18
                                a(class="nav-link pl-0 text-nowrap" href="/account/")
19
20
                                    span(class="font-weight-bold" style="color:black;") #{user.firstname} #{user.lastname}
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
21
                                a(class="nav-link pl-0" href="/account/profile")
22
23
                                    i(class="fa fa-user fa-fw" style="color:black;")
                                    span(class="d-none d-md-inline" style="color:black;") Benutzerprofil
24
25
26
27
28
                            if user.m4lab_idp == 1
                                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
29
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
30
                                a(class="nav-link pl-0" href="/account/services")
31
32
33
                                    i(class="fa fa-tasks fa-fw")
                                    span(class="d-none d-md-inline") Projekte und Dienste
                            li(class="nav-item")
34
                                a(class="nav-link pl-0" href="/logout" style="color:red;")
35
36
37
                                    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
38
39
40
41
42
43
44
45
                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") ×
Rosanny Sihombing's avatar
Rosanny Sihombing committed
46
                form#profileForm(method="POST", action="/updateProfile")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
47
                    div(class="form-row")
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
48
49
                        div(class='form-group col-md-2')
                            label(for="title") Anrede
50
                            select#inputSalutation(name="inputSalutation", class="form-control", value=user.salutation)
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
51
52
53
54
55
56
57
58
59
60
                                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
61
                        div(class='form-group col-md-2')
62
                            label(for="title") Titel
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
63
                            select#inputTitle(name="inputTitle", class="form-control", value=user.title)
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
64
                                option(value="") - Titel -
65
                                option(value="Prof.") Prof.
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
66
                                option(value="Dr.") Dr.
67
                                option(value="Dipl.-Ing.") Dipl.-Ing.
Rosanny Sihombing's avatar
Rosanny Sihombing committed
68
69
70
71
72
73
                                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
74
                        div(class='form-group col-md-2')
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
75
                            label(for="firstname") Vorname
Rosanny Sihombing's avatar
Rosanny Sihombing committed
76
                            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
77
                        div(class='form-group col-md-2')
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
78
                            label(for="lastname") Nachname
Rosanny Sihombing's avatar
Rosanny Sihombing committed
79
                            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
80
81
                    div(class="form-row")
                        div(class='form-group col-md-8')
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
82
                            label(for="email") E-mail Adresse
Rosanny Sihombing's avatar
Rosanny Sihombing committed
83
                            input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="Email", value=email, maxlength="45" required)
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
84
85
86
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="organisation") Unternehmen
Rosanny Sihombing's avatar
Rosanny Sihombing committed
87
                            input#inputOrganisation(name="inputOrganisation", type="text", class="form-control", placeholder="Unternehmen", value=user.organisation, maxlength="45")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
88
89
90
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="industry") Branche
Rosanny Sihombing's avatar
Rosanny Sihombing committed
91
                            input#inputIndustry(name="inputIndustry", type="text", class="form-control", placeholder="Branche", value=user.industry, maxlength="45")
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
92
93
94
                    div(class="form-row")
                        div(class='form-group col-md-8')
                            label(for="speciality") Fachgebiete
Rosanny Sihombing's avatar
Rosanny Sihombing committed
95
                            input#inputSpeciality(name="inputSpeciality", type="text", class="form-control", placeholder="Fachgebiete", value=user.speciality, maxlength="100")                    
Rosanny Sihombing's avatar
DE    
Rosanny Sihombing committed
96
                    input(type="submit", class="btn btn-primary", value="Speichern")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
97
98
99
100
101
102
103

    // 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
104
    script(src="/js/headfoot.js")