aboutsummaryrefslogtreecommitdiff
path: root/src/components/remote_follow/remote_follow.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/remote_follow/remote_follow.vue')
-rw-r--r--src/components/remote_follow/remote_follow.vue38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/components/remote_follow/remote_follow.vue b/src/components/remote_follow/remote_follow.vue
new file mode 100644
index 00000000..cb1c2a1b
--- /dev/null
+++ b/src/components/remote_follow/remote_follow.vue
@@ -0,0 +1,38 @@
+<template>
+ <div class="remote-follow">
+ <form
+ method="POST"
+ :action="subscribeUrl"
+ >
+ <input
+ type="hidden"
+ name="nickname"
+ :value="user.screen_name"
+ >
+ <input
+ type="hidden"
+ name="profile"
+ value=""
+ >
+ <button
+ click="submit"
+ class="remote-button"
+ >
+ {{ $t('user_card.remote_follow') }}
+ </button>
+ </form>
+ </div>
+</template>
+
+<script src="./remote_follow.js"></script>
+
+<style lang="scss">
+.remote-follow {
+ max-width: 220px;
+
+ .remote-button {
+ width: 100%;
+ min-height: 28px;
+ }
+}
+</style>