diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-03-25 19:09:22 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-03-25 19:09:22 +0000 |
| commit | 3025532ecf6b728604d14af9bf218e96de0756ed (patch) | |
| tree | 6ae4a91f593357bbbcae3109002dbd22122e1d02 /src/components/remote_follow/remote_follow.vue | |
| parent | 8522063b2c4a35f0926517a3b75376c81131dd79 (diff) | |
| parent | 854d0e80512d2da80cd5153144698a5148da4aa6 (diff) | |
Merge branch 'develop' into 'mastoapi/public-tl'
# Conflicts:
# src/services/api/api.service.js
Diffstat (limited to 'src/components/remote_follow/remote_follow.vue')
| -rw-r--r-- | src/components/remote_follow/remote_follow.vue | 24 |
1 files changed, 24 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..fb2147bd --- /dev/null +++ b/src/components/remote_follow/remote_follow.vue @@ -0,0 +1,24 @@ +<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> |
