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.vue22
1 files changed, 18 insertions, 4 deletions
diff --git a/src/components/remote_follow/remote_follow.vue b/src/components/remote_follow/remote_follow.vue
index fb2147bd..cb1c2a1b 100644
--- a/src/components/remote_follow/remote_follow.vue
+++ b/src/components/remote_follow/remote_follow.vue
@@ -1,9 +1,23 @@
<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">
+ <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>