aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_settings/confirm.vue
diff options
context:
space:
mode:
authorMaksim <parallel588@gmail.com>2019-06-12 20:16:55 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-06-12 20:16:55 +0000
commit77eceedbf7a5b53948d7d91b3d228aa303c02081 (patch)
tree560ecc4d370fda07c5da8cde5c60c679fa9c7862 /src/components/user_settings/confirm.vue
parent9df99c5205b1cb560bb25c0dd81cc90acbde4d7f (diff)
Revert "add TOTP/Recovery Form for mobile version"
This reverts commit a3811f944819430c278b6da6b08dc322a9b9ff65.
Diffstat (limited to 'src/components/user_settings/confirm.vue')
-rw-r--r--src/components/user_settings/confirm.vue14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/user_settings/confirm.vue b/src/components/user_settings/confirm.vue
new file mode 100644
index 00000000..46a42e38
--- /dev/null
+++ b/src/components/user_settings/confirm.vue
@@ -0,0 +1,14 @@
+<template>
+<div>
+ <slot></slot>
+ <button class="btn btn-default" @click="confirm" :disabled="disabled">
+ {{$t('general.confirm')}}
+ </button>
+ <button class="btn btn-default" @click="cancel" :disabled="disabled">
+ {{$t('general.cancel')}}
+ </button>
+</div>
+</template>
+
+<script src="./confirm.js">
+</script>