Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
m4lab_tv1
User Account
Commits
025f0560
Commit
025f0560
authored
5 years ago
by
Rosanny Sihombing
Browse files
Options
Download
Email Patches
Plain Diff
add character limitation, which is taken from DB
parent
9a226bc9
master
MLAB-677
devel
devel_wolfgang
patch-1
reset-jul13
reset-merge
test_logoutbutton
testing
1 merge request
!2
Mlab 56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
views/DE/account/registration.pug
+7
-7
views/DE/account/registration.pug
with
7 additions
and
7 deletions
+7
-7
views/DE/account/registration.pug
+
7
-
7
View file @
025f0560
...
...
@@ -49,10 +49,10 @@ html(lang="de")
h5(class="mb-3 font-weight-bold") Anmeldedaten
div(class='form-row')
div(class='form-group col-md-6')
input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="E-Mail-Adresse*" required)
input#inputEmail(name="inputEmail", type="email", class="form-control", placeholder="E-Mail-Adresse*"
, maxlength="45"
required)
span#emailWarning(class='warning')
div(class="form-group col-md-6")
input#inputPassword(name="inputPassword", type="password", class="form-control", data-toggle="password", placeholder="Passwort*" required)
input#inputPassword(name="inputPassword", type="password", class="form-control", data-toggle="password", placeholder="Passwort*"
, maxlength="45"
required)
span#passwordWarning(class='warning')
h5(class="mb-3 font-weight-bold") Benutzerprofil
div(class="form-row")
...
...
@@ -70,15 +70,15 @@ html(lang="de")
option(value="Dipl.-Ing.") Dipl.-Ing.
option(value="etc.") etc.
div(class='form-group col-md-4')
input#inputFirstname(name="inputFirstname", type="text", class="form-control", placeholder="Vorname*" required)
input#inputFirstname(name="inputFirstname", type="text", class="form-control", placeholder="Vorname*"
, maxlength="45"
required)
div(class='form-group col-md-4')
input#inputLastname(name="inputLastname", type="text", class="form-control", placeholder="Nachname*" required)
input#inputLastname(name="inputLastname", type="text", class="form-control", placeholder="Nachname*"
, maxlength="45"
required)
div(class="form-group")
input#inputOrganisation(name="inputOrganisation", type="text", class="form-control", placeholder="Unternehmen")
input#inputOrganisation(name="inputOrganisation", type="text", class="form-control", placeholder="Unternehmen"
, maxlength="45"
)
div(class="form-group")
input#inputIndustry(name="inputIndustry", type="text", class="form-control", placeholder="Branche")
input#inputIndustry(name="inputIndustry", type="text", class="form-control", placeholder="Branche"
, maxlength="45"
)
div(class="form-group")
input#inputSpeciality(name="inputSpeciality", type="text", class="form-control", placeholder="Fachgebiete")
input#inputSpeciality(name="inputSpeciality", type="text", class="form-control", placeholder="Fachgebiete"
, maxlength="100"
)
p <em><small>* Pflichtfeld</small></em>
input#submitBtn(type="submit", class="btn btn-outline-dark btn-block", value="Senden" disabled)
br
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets