Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
d30efcb3
Commit
d30efcb3
authored
Oct 05, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better bootstrap markup for the account registration form
parent
11bd3db8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
18 deletions
+25
-18
CHANGES.md
CHANGES.md
+1
-0
css/converse.css
css/converse.css
+1
-0
dist/converse.js
dist/converse.js
+8
-8
sass/_controlbox.scss
sass/_controlbox.scss
+1
-0
src/templates/form_username.html
src/templates/form_username.html
+14
-10
No files found.
CHANGES.md
View file @
d30efcb3
...
...
@@ -4,6 +4,7 @@
-
Bugfix. Handler not triggered when submitting MUC password form 2nd time
-
Bugfix. MUC features weren't being refreshed when saving the config form
-
#1190 MUC Participants column disappears in certain viewport widths
-
#1214 Setting
`allow_contact_requests`
to
`false`
has no effect
-
#1222 Adding a bookmark should prefill the room name
...
...
css/converse.css
View file @
d30efcb3
...
...
@@ -10014,6 +10014,7 @@ body.reset {
#conversejs
.converse-mobile
#controlbox
.brand-heading-container
{
flex
:
0
0
100%
;
max-width
:
100%
;
margin-bottom
:
1em
;
text-align
:
center
;
}
#conversejs
.converse-fullscreen
#controlbox
.brand-heading-container
.brand-heading
,
#conversejs
.converse-mobile
#controlbox
.brand-heading-container
.brand-heading
{
...
...
dist/converse.js
View file @
d30efcb3
...
...
@@ -79553,31 +79553,31 @@ var _ = {escape:__webpack_require__(/*! ./node_modules/lodash/escape.js */ "./no
module.exports = function(o) {
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
__p += '<!-- src/templates/form_username.html -->\n';
__p += '<!-- src/templates/form_username.html -->\n
<div class="form-group">\n
';
if (o.label) { ;
__p += '\n
<label>\n
' +
__p += '\n
<label>\n
' +
__e(o.label) +
'\n
</label>\n
';
'\n
</label>\n
';
} ;
__p += '\n
<div class="input-group">\n
<input name="' +
__p += '\n
<div class="input-group">\n <div class="input-group-prepend">\n
<input name="' +
__e(o.name) +
'" type="' +
__e(o.type) +
'"\n ';
'"\n
';
if (o.value) { ;
__p += ' value="' +
__e(o.value) +
'" ';
} ;
__p += '\n ';
__p += '\n
';
if (o.required) { ;
__p += ' class="required" ';
} ;
__p += ' />\n
<span
title="' +
__p += ' />\n
<div class="input-group-text col"
title="' +
__e(o.domain) +
'">' +
__e(o.domain) +
'</
span
>\n</div>\n';
'</
div>\n </div>\n </div
>\n</div>\n';
return __p
};
sass/_controlbox.scss
View file @
d30efcb3
...
...
@@ -443,6 +443,7 @@
.brand-heading-container
{
@include
make-col
(
12
);
margin-bottom
:
1em
;
text-align
:
center
;
.brand-heading
{
font-size
:
150%
;
...
...
src/templates/form_username.html
View file @
d30efcb3
{[ if (o.label) { ]}
<label>
{{{o.label}}}
</label>
{[ } ]}
<div
class=
"input-group"
>
<input
name=
"{{{o.name}}}"
type=
"{{{o.type}}}"
{[
if
(
o
.
value
)
{
]}
value=
"{{{o.value}}}"
{[
}
]}
{[
if
(
o
.
required
)
{
]}
class=
"required"
{[
}
]}
/>
<span
title=
"{{{o.domain}}}"
>
{{{o.domain}}}
</span>
<div
class=
"form-group"
>
{[ if (o.label) { ]}
<label>
{{{o.label}}}
</label>
{[ } ]}
<div
class=
"input-group"
>
<div
class=
"input-group-prepend"
>
<input
name=
"{{{o.name}}}"
type=
"{{{o.type}}}"
{[
if
(
o
.
value
)
{
]}
value=
"{{{o.value}}}"
{[
}
]}
{[
if
(
o
.
required
)
{
]}
class=
"required"
{[
}
]}
/>
<div
class=
"input-group-text col"
title=
"{{{o.domain}}}"
>
{{{o.domain}}}
</div>
</div>
</div>
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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