b317f28fdb
Allows us to remove the following files from satellite branding repo, with an up-to-date single source of truth now in storj/storj: * web/satellite/src/common/registrationSuccess.html * web/satellite/src/common/registrationSuccess.scss * web/satellite/src/views/register/registerArea.html * web/satellite/src/views/register/registerArea.scss The registrationSuccess files have been removed from all satellites in the branding repository. The registerArea files have been removed only from production satellites in the branding repository. Importantly, this change enables the "resend email" functionality on production satellites - previously, this functionality was available in storj/storj, but not our branding repository. Removes the config for VerificationPageURL, which redirected users away from the satellite app to storj.io after creating an account. In order for the email resend button to work, we cannot leave the app. Adds a new config value for partner satellites, which replaces the partner satellite names config. The new config includes name and address. It is validated on setup/run to ensure it can be parsed. Change-Id: I67db0702d9b9641f1a37b599f2929d56f3c33aca
34 lines
3.0 KiB
HTML
34 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head lang="en">
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
<meta name="external-address" content="{{ .ExternalAddress }}">
|
|
<meta name="satellite-name" content="{{ .SatelliteName }}">
|
|
<meta name="satellite-nodeurl" content="{{ .SatelliteNodeURL }}">
|
|
<meta name="stripe-public-key" content="{{ .StripePublicKey }}">
|
|
<meta name="partnered-satellites" content="{{ .PartneredSatellites }}">
|
|
<meta name="default-project-limit" content="{{ .DefaultProjectLimit }}">
|
|
<meta name="general-request-url" content="{{ .GeneralRequestURL }}">
|
|
<meta name="project-limits-increase-request-url" content="{{ .ProjectLimitsIncreaseRequestURL }}">
|
|
<meta name="gateway-credentials-request-url" content="{{ .GatewayCredentialsRequestURL }}">
|
|
<meta name="is-beta-satellite" content="{{ .IsBetaSatellite }}">
|
|
<meta name="beta-satellite-feedback-url" content="{{ .BetaSatelliteFeedbackURL }}">
|
|
<meta name="beta-satellite-support-url" content="{{ .BetaSatelliteSupportURL }}">
|
|
<meta name="documentation-url" content="{{ .DocumentationURL }}">
|
|
<meta name="coupon-code-ui-enabled" content="{{ .CouponCodeUIEnabled }}">
|
|
<meta name="file-browser-flow-disabled" content="{{ .FileBrowserFlowDisabled }}">
|
|
<meta name="linksharing-url" content="{{ .LinksharingURL }}">
|
|
<meta name="storage-tb-price" content="{{ .StorageTBPrice }}">
|
|
<meta name="egress-tb-price" content="{{ .EgressTBPrice }}">
|
|
<meta name="object-price" content="{{ .ObjectPrice }}">
|
|
<title>{{ .SatelliteName }}</title>
|
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAL8SURBVHgBxVcxTFNRFL01JvylrRsmNWETWWSybg5I3NTQBCdRFyfrDuoKMgMyOQgdTcDAJmrUrWWCgQIbhJKy0TJQpsc73P/S9/tfP+8/GnqSn1fo77/3nnPufe8nhAR1ETeoy7hJjpj93/ycu0+UuUVuEA5Y2xaifirEVpX/nvknnBFbgpMGUfmIKOkRLRT578oxXy6IJcFCialH0EyaaPoZBy7tEQ3NEY1IKd4/iidHwqYLijLA559cuY6dT0RjBU5AAYm9fiivLFnBKMGBTyeqQ4BXhXDwdqjUiKZkskOzREsbzeeBNRMCEiDgr12uYl1WNbnW/oc2iUys8jrQyyxhHRkM3hdgAMFBHQyGG/GDqyDlsSeS/npQC99jlEBpOnyX2XCF8sGhZLbeMLMZkCDbJ1nYYTfDeMP9fMH5y5vmIKYE8RxUjBXPedDH1Zu6I9QFSzLQxErz4Xn5oNwg+2NSmuv3Lkvz4QlTi8rupDlBmA6tqQLrnYNCvoxSNAOtUEaakwzMv+ALidTP2OlKKiSK75Cs6hy9NYFkjzmG1SBCIuUq0Za8pgydge8R9E+e10qNrGE1ikH5435mo11bQgr4B9LEgVUC0Npm1o+vcuvBxB1NYFsaaeC2XUuW/Xs7msC9Xqa+MMa9jQr1KtXAQoKYHakeskbIhDrVasdTbbVY4s8ZYld/9PWuyeTSHksFBjBFcZ+aH/j/yZk5gcAcgImgIX6MNsKKhKBta1sB2A3HV5pD6iJQIzw/MICwoohc1F6ALBH03XemFYPl+VdzcBNUh6j5gZZEcP341opAAnX/AXl/A0FlrrshgMRR+YUvPPN8CHgAxlqWVYuEdH7V/ZilA6cosFDa53EcmUDKC+7X+IwxHEVhO0DK6aeXH88uHcWQA8xE7Yg69M6xgdWZUEFtNNDyx1s2KnyDIxu22zdZTjgWhANm/vL6clGIsnw3+Fbk94RreS8AMGrBxvwoT0lMPnSNC2JJoAPdgnMBJLjKq5lzAp1C19+OzwFiYzAU5f7eeQAAAABJRU5ErkJggg==" type="image/x-icon">
|
|
<link rel="dns-prefetch" href="https://js.stripe.com">
|
|
<script defer src="https://js.stripe.com/v3/"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|