mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-17 00:43:02 +01:00
24 lines
532 B
Vue
24 lines
532 B
Vue
<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>
|