1
0
Fork 0
mirror of synced 2024-07-08 16:06:02 +12:00
appwrite/app/views/home/auth/confirm.phtml

23 lines
927 B
PHTML
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
use Utopia\Locale\Locale;
?>
<section class="zone xl">
2019-08-08 17:09:49 +12:00
<form
data-service="auth.confirm"
2019-05-09 18:54:39 +12:00
data-scope="console"
data-event="load"
2019-05-09 20:23:22 +12:00
data-param-token="{{router.params.token}}"
data-param-user-id="{{router.params.userId}}"
2019-05-09 18:54:39 +12:00
data-success="redirect,alert,trigger"
data-success-redirect-url="/console"
data-success-alert="<?php echo $this->escape(Locale::getText('home.auth.confirm.success')); ?>"
data-success-triggers="account.update"
2019-08-08 17:09:49 +12:00
data-failure="alert"
2019-08-09 01:43:24 +12:00
data-failure-param-alert-text="<?php echo $this->escape(Locale::getText('home.auth.confirm.failure')); ?>"
data-failure-param-alert-classname="error">
2019-05-09 18:54:39 +12:00
<h2 class="margin-bottom-small"><?php echo $this->escape(Locale::getText('home.auth.confirm.title')); ?></h2>
<p class="note"><?php echo $this->escape(Locale::getText('home.auth.confirm.subtitle')); ?></p>
</form>
</section>