2014-02-12 05:23:40 -05:00
extends ../layout
block content
2014-06-09 05:56:26 -04:00
.content.content-alt
.container
.row
2018-06-15 06:30:34 -04:00
.col-md-12.col-lg-10.col-lg-offset-1
2014-06-20 10:48:00 -04:00
.card
2014-06-09 05:56:26 -04:00
.page-header
2014-07-31 06:54:19 -04:00
h1 #{translate("account_settings")}
2014-06-20 10:48:00 -04:00
.account-settings(ng-controller="AccountSettingsController", ng-cloak)
2018-08-13 08:59:39 -04:00
if hasFeature('affiliations')
2018-06-27 12:08:25 -04:00
include settings/user-affiliations
2018-06-25 12:06:23 -04:00
form-messages(for="settingsForm")
.alert.alert-success(ng-show="settingsForm.response.success")
| #{translate("thanks_settings_updated")}
form-messages(for="changePasswordForm")
2018-06-21 12:18:01 -04:00
2018-06-25 12:06:23 -04:00
.row
.col-md-5
h3 #{translate("update_account_info")}
form(async-form="settings", name="settingsForm", method="POST", action="/user/settings", novalidate)
input(type="hidden", name="_csrf", value=csrfToken)
2018-08-13 08:59:39 -04:00
if !hasFeature('affiliations')
2018-07-05 12:26:12 -04:00
if !externalAuthenticationSystemUsed()
.form-group
label(for='email') #{translate("email")}
input.form-control(
type='email',
name='email',
placeholder="email@example.com"
required,
ng-model="email",
ng-init="email = "+JSON.stringify(user.email),
ng-model-options="{ updateOn: 'blur' }"
)
span.small.text-primary(ng-show="settingsForm.email.$invalid && settingsForm.email.$dirty")
| #{translate("must_be_email_address")}
else
// show the email, non-editable
.form-group
label.control-label #{translate("email")}
div.form-control(readonly="true") #{user.email}
2016-11-17 09:34:02 -05:00
2018-06-25 12:06:23 -04:00
if shouldAllowEditingDetails
.form-group
label(for='firstName').control-label #{translate("first_name")}
input.form-control(
type='text',
name='first_name',
value=user.first_name
ng-non-bindable
)
.form-group
label(for='lastName').control-label #{translate("last_name")}
input.form-control(
type='text',
name='last_name',
value=user.last_name
ng-non-bindable
)
.actions
button.btn.btn-primary(
type='submit',
ng-disabled="settingsForm.$invalid"
) #{translate("update")}
else
.form-group
label.control-label #{translate("first_name")}
div.form-control(readonly="true") #{user.first_name}
.form-group
label.control-label #{translate("last_name")}
div.form-control(readonly="true") #{user.last_name}
2016-11-25 09:38:00 -05:00
2018-08-31 09:20:27 -04:00
2018-06-25 12:06:23 -04:00
if !externalAuthenticationSystemUsed()
.col-md-5.col-md-offset-1
h3 #{translate("change_password")}
form(async-form="changepassword", name="changePasswordForm", action="/user/password/update", method="POST", novalidate)
input(type="hidden", name="_csrf", value=csrfToken)
.form-group
label(for='currentPassword') #{translate("current_password")}
input.form-control(
type='password',
name='currentPassword',
placeholder='*********',
ng-model="currentPassword",
required
)
span.small.text-primary(ng-show="changePasswordForm.currentPassword.$invalid && changePasswordForm.currentPassword.$dirty")
| #{translate("required")}
.form-group
label(for='newPassword1') #{translate("new_password")}
input.form-control(
id='passwordField',
type='password',
name='newPassword1',
placeholder='*********',
ng-model="newPassword1",
required,
complex-password
)
span.small.text-primary(ng-show="changePasswordForm.newPassword1.$error.complexPassword && changePasswordForm.newPassword1.$dirty", ng-bind-html="complexPasswordErrorMessage")
.form-group
label(for='newPassword2') #{translate("confirm_new_password")}
input.form-control(
type='password',
name='newPassword2',
placeholder='*********',
ng-model="newPassword2",
equals="passwordField"
)
span.small.text-primary(ng-show="changePasswordForm.newPassword2.$error.areEqual && changePasswordForm.newPassword2.$dirty")
| #{translate("doesnt_match")}
span.small.text-primary(ng-show="!changePasswordForm.newPassword2.$error.areEqual && changePasswordForm.newPassword2.$invalid && changePasswordForm.newPassword2.$dirty")
| #{translate("invalid_password")}
.actions
button.btn.btn-primary(
type='submit',
ng-disabled="changePasswordForm.$invalid"
) #{translate("change")}
2014-02-12 05:23:40 -05:00
2018-08-31 09:20:27 -04:00
else
if settings.overleaf && settings.createV1AccountOnLogin
2018-08-31 11:27:57 -04:00
.col-md-5.col-md-offset-1
h3 #{translate("change_password")}
p
| To change your password,
| please go to #[a(href=settings.overleaf.host+'/users/edit') Overleaf v1 settings]
2018-08-31 09:20:27 -04:00
2018-06-15 06:30:34 -04:00
2014-09-08 10:40:46 -04:00
| !{moduleIncludes("userSettings", locals)}
2014-02-12 05:23:40 -05:00
2018-03-19 13:02:27 -04:00
//- The beta program doesn't make much sense to include while v2 is going
//- but we may want to add it back in later
//- hr
//-
//- h3
//- | #{translate("sharelatex_beta_program")}
//-
//- if (user.betaProgram)
//- p.small
//- | #{translate("beta_program_already_participating")}
//-
//- div
//- a(id="beta-program-participate-link" href="/beta/participate") #{translate("manage_beta_program_membership")}
2016-06-08 10:31:14 -04:00
2014-10-07 08:31:13 -04:00
hr
2016-10-07 05:52:58 -04:00
h3
| #{translate("sessions")}
div
a(id="sessions-link", href="/user/sessions") #{translate("manage_sessions")}
hr
2014-02-12 05:23:40 -05:00
2018-08-31 08:57:27 -04:00
if !externalAuthenticationSystemUsed() || (settings.createV1AccountOnLogin && settings.overleaf)
2014-06-20 10:48:00 -04:00
2015-02-24 08:39:30 -05:00
p.small
| #{translate("newsletter_info_and_unsubscribe")}
a(
href,
ng-click="unsubscribe()",
ng-show="subscribed && !unsubscribing"
) #{translate("unsubscribe")}
span(
ng-show="unsubscribing"
)
i.fa.fa-spin.fa-refresh
| #{translate("unsubscribing")}
span.text-success(
ng-show="!subscribed"
)
i.fa.fa-check
| #{translate("unsubscribed")}
2018-08-16 09:11:43 -04:00
if !settings.overleaf && user.overleaf
p
| Please note: If you have linked your account with Overleaf
| v2, then deleting your ShareLaTeX account will also delete
| account and all of it's associated projects and data.
2015-02-24 08:39:30 -05:00
p #{translate("need_to_leave")}
a(href, ng-click="deleteAccount()") #{translate("delete_your_account")}
2014-06-20 10:48:00 -04:00
script(type='text/ng-template', id='deleteAccountModalTemplate')
.modal-header
2014-07-31 06:54:19 -04:00
h3 #{translate("delete_account")}
2016-10-25 11:23:50 -04:00
div.modal-body#delete-account-modal
p !{translate("delete_account_warning_message_3")}
2018-09-04 06:19:57 -04:00
if settings.createV1AccountOnLogin && settings.overleaf
p
strong
| This will also delete your user account on #[a(href=settings.overleaf.host target="_blank") Overleaf v1].
| If you want to remove your projects from Overleaf v1, you must do this before you
| delete your account by going to your My Projects page in Overleaf v1, moving your
| projects to the Trash, and then from there either ‘ leaving’ or ‘ purging’ them, as appropriate.
2014-06-20 10:48:00 -04:00
form(novalidate, name="deleteAccountForm")
2016-10-25 09:33:47 -04:00
label #{translate('email')}
2014-06-20 10:48:00 -04:00
input.form-control(
type="text",
2016-10-26 05:57:54 -04:00
autocomplete="off",
2014-06-20 10:48:00 -04:00
placeholder="",
2014-07-28 11:52:23 -04:00
ng-model="state.deleteText",
focus-on="open",
ng-keyup="checkValidation()"
2014-06-20 10:48:00 -04:00
)
2018-09-06 06:35:28 -04:00
2016-10-25 09:33:47 -04:00
label #{translate('password')}
input.form-control(
type="password",
2016-10-26 05:57:54 -04:00
autocomplete="off",
2016-10-25 09:33:47 -04:00
placeholder="",
ng-model="state.password",
2016-10-25 11:23:50 -04:00
ng-keyup="checkValidation()"
2016-10-25 09:33:47 -04:00
)
2018-09-06 06:35:28 -04:00
div.confirmation-checkbox-wrapper
input(
type="checkbox"
ng-model="state.confirmV1Purge"
ng-change="checkValidation()"
).pull-left
label(style="display: inline") I have left or purged my projects on Overleaf v1 (if any)
div.confirmation-checkbox-wrapper
input(
type="checkbox"
ng-model="state.confirmSharelatexDelete"
ng-change="checkValidation()"
).pull-left
label(style="display: inline") I understand this will delete all projects in my Overleaf v2 account (and ShareLaTeX account, if any) with email address #[em {{ userDefaultEmail }}]
2016-10-25 09:33:47 -04:00
div(ng-if="state.error")
div.alert.alert-danger
| #{translate('generic_something_went_wrong')}
2016-10-25 11:23:50 -04:00
div(ng-if="state.invalidCredentials")
div.alert.alert-danger
| #{translate('email_or_password_wrong_try_again')}
2018-09-04 06:19:57 -04:00
if settings.createV1AccountOnLogin && settings.overleaf
div(ng-if="state.error || state.invalidCredentials")
div.alert.alert-info
| If you can't remember your password, or if you are using Single-Sign-On with another provider
| to sign in (such as Twitter or Google), please
| #[a(href=settings.overleaf.host+'/users/password/new', target='_blank') reset your password],
| and try again.
2014-06-20 10:48:00 -04:00
.modal-footer
button.btn.btn-default(
ng-click="cancel()"
2014-07-31 06:54:19 -04:00
) #{translate("cancel")}
2014-06-20 10:48:00 -04:00
button.btn.btn-danger(
2014-07-28 11:52:23 -04:00
ng-disabled="!state.isValid || state.inflight"
2014-06-20 10:48:00 -04:00
ng-click="delete()"
)
2014-07-31 06:54:19 -04:00
span(ng-hide="state.inflight") #{translate("delete")}
span(ng-show="state.inflight") #{translate("deleting")}...
2015-04-28 13:30:19 -04:00
script(type='text/javascript').
window.passwordStrengthOptions = !{JSON.stringify(settings.passwordStrengthOptions || {})}
2014-02-22 06:26:36 -05:00