Add logo to the submit page
parent
e0b49c7b71
commit
15eeaa75f6
|
@ -581,11 +581,16 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
flex-flow: column;
|
||||
.cp-form-submit-actions {
|
||||
button:not(:last-child) {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
.cp-form-view-logo {
|
||||
margin-top: 100px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
}
|
||||
div.cp-form-creator-results {
|
||||
display: flex;
|
||||
|
|
|
@ -2217,6 +2217,20 @@ define([
|
|||
$container.prepend($res);
|
||||
};
|
||||
|
||||
var getLogo = function () {
|
||||
var logo = h('div.cp-form-view-logo', [
|
||||
h('img', {
|
||||
src:'/customize/CryptPad_logo_grey.svg?'+ApiConfig.requireConf.urlArgs,
|
||||
alt:'CryptPad_logo'
|
||||
}),
|
||||
h('span', 'CryptPad')
|
||||
]);
|
||||
$(logo).click(function () {
|
||||
framework._.sfCommon.gotoURL('/drive/');
|
||||
});
|
||||
return logo;
|
||||
};
|
||||
|
||||
Messages.form_alreadyAnswered = "You've responded to this form on {0}"; // XXX
|
||||
Messages.form_editAnswer = "Edit my responses"; // XXX
|
||||
Messages.form_viewAnswer = "View my responses"; // XXX
|
||||
|
@ -2290,6 +2304,7 @@ define([
|
|||
new Date(APP.lastAnswerTime).toLocaleString()])),
|
||||
actions
|
||||
]));
|
||||
$container.append(getLogo());
|
||||
};
|
||||
|
||||
var getFormResults = function () {
|
||||
|
@ -3047,17 +3062,7 @@ define([
|
|||
// at the bottom
|
||||
var title = framework._.title.title || framework._.title.defaultTitle;
|
||||
$container.prepend(h('h1.cp-form-view-title', title));
|
||||
var logo = h('div.cp-form-view-logo', [
|
||||
h('img', {
|
||||
src:'/customize/CryptPad_logo_grey.svg?'+ApiConfig.requireConf.urlArgs,
|
||||
alt:'CryptPad_logo'
|
||||
}),
|
||||
h('span', 'CryptPad')
|
||||
]);
|
||||
$(logo).click(function () {
|
||||
framework._.sfCommon.gotoURL('/drive/');
|
||||
});
|
||||
$container.append(logo);
|
||||
$container.append(getLogo());
|
||||
|
||||
if (!answers) {
|
||||
$container.find('.cp-reset-button').attr('disabled', 'disabled');
|
||||
|
|
Loading…
Reference in New Issue