2020-02-25 04:39:53 -05:00
|
|
|
extends ../../layout
|
|
|
|
|
|
|
|
block vars
|
|
|
|
- metadata = { viewport: true }
|
|
|
|
|
|
|
|
block content
|
|
|
|
|
|
|
|
script(type="template", id="overleaf-token-access-data")!= StringHelper.stringifyJsonForScript({ postUrl: postUrl, csrfToken: csrfToken})
|
|
|
|
|
|
|
|
div(
|
|
|
|
ng-controller="TokenAccessPageController",
|
|
|
|
ng-init="post()"
|
|
|
|
)
|
|
|
|
.editor.full-size
|
|
|
|
div
|
|
|
|
|
|
2020-05-20 09:02:50 -04:00
|
|
|
a(href="/project", style="font-size: 2rem; margin-left: 1rem; color: #ddd;")
|
2020-02-25 04:39:53 -05:00
|
|
|
i.fa.fa-arrow-left
|
|
|
|
|
|
|
|
.loading-screen(
|
|
|
|
ng-show="mode == 'accessAttempt'"
|
|
|
|
)
|
|
|
|
.loading-screen-brand-container
|
|
|
|
.loading-screen-brand()
|
|
|
|
|
|
|
|
h3.loading-screen-label.text-center
|
|
|
|
| #{translate('join_project')}
|
|
|
|
span(ng-show="accessInFlight == true")
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
|
|
|
|
|
|
|
|
.global-alerts.text-center(ng-cloak)
|
|
|
|
div(ng-show="accessError", ng-cloak)
|
|
|
|
br
|
|
|
|
div(ng-switch="accessError", ng-cloak)
|
|
|
|
div(ng-switch-when="not_found")
|
|
|
|
h4(aria-live="assertive")
|
|
|
|
| Project not found
|
|
|
|
|
|
|
|
div(ng-switch-default)
|
|
|
|
.alert.alert-danger(aria-live="assertive") #{translate('token_access_failure')}
|
|
|
|
p
|
|
|
|
a(href="/") #{translate('home')}
|
|
|
|
|
|
|
|
.loading-screen(
|
|
|
|
ng-show="mode == 'v1Import'"
|
|
|
|
)
|
|
|
|
.container
|
|
|
|
.row
|
|
|
|
.col-sm-8.col-sm-offset-2
|
2021-06-24 04:27:19 -04:00
|
|
|
h1.text-center
|
|
|
|
span(ng-if="v1ImportData.status != 'mustLogin'") Overleaf v1 Project
|
|
|
|
span(ng-if="v1ImportData.status == 'mustLogin'") Please Log In
|
2020-02-25 04:39:53 -05:00
|
|
|
img.v2-import__img(
|
|
|
|
src="/img/v1-import/v2-editor.png"
|
|
|
|
alt="The new V2 editor."
|
|
|
|
)
|
|
|
|
|
|
|
|
div(ng-if="v1ImportData.status == 'cannotImport'")
|
|
|
|
h2.text-center
|
|
|
|
| Cannot Access Overleaf v1 Project
|
|
|
|
p.text-center.row-spaced-small
|
2021-06-24 04:27:19 -04:00
|
|
|
| Please contact the project owner or
|
2020-02-25 04:39:53 -05:00
|
|
|
|
|
|
|
|
a(href="/contact") contact support
|
|
|
|
|
|
|
|
|
| for assistance.
|
|
|
|
|
|
|
|
div(ng-if="v1ImportData.status == 'mustLogin'")
|
|
|
|
p.text-center.row-spaced-small
|
2021-06-24 04:27:19 -04:00
|
|
|
| You will need to log in to access this project.
|
2020-02-25 04:39:53 -05:00
|
|
|
|
|
|
|
.row-spaced.text-center
|
|
|
|
a.btn.btn-primary(
|
|
|
|
href="/login?redir={{ currentPath() }}"
|
2021-06-24 04:27:19 -04:00
|
|
|
) Log In To Access Project
|
2020-02-25 04:39:53 -05:00
|
|
|
|
2020-05-20 09:02:50 -04:00
|
|
|
div(ng-if="v1ImportData.status == 'canDownloadZip'")
|
|
|
|
p.text-center.row-spaced.small
|
|
|
|
| #[strong() {{ getProjectName() }}] has not yet been moved into
|
|
|
|
| the new version of Overleaf. This project was created
|
|
|
|
| anonymously and therefore cannot be automatically imported.
|
|
|
|
| Please download a zip file of the project and upload that to
|
|
|
|
| continue editing it. If you would like to delete this project
|
|
|
|
| after you have made a copy, please contact support.
|
|
|
|
|
|
|
|
.row-spaced.text-center
|
2021-05-17 05:38:35 -04:00
|
|
|
a.btn.btn-primary(ng-href="{{ buildZipDownloadPath(v1ImportData.projectId) }}")
|
2020-05-20 09:02:50 -04:00
|
|
|
| Download project zip file
|
2020-02-25 04:39:53 -05:00
|
|
|
|
|
|
|
|
|
|
|
block append foot-scripts
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2020-02-25 04:39:53 -05:00
|
|
|
$(document).ready(function () {
|
|
|
|
setTimeout(function() {
|
|
|
|
$('.loading-screen-brand').css('height', '20%')
|
|
|
|
}, 500);
|
|
|
|
});
|