mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-06-17 03:39:13 +08:00
Ref #81 - this implements a "your request has been sent" message  Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/pleroma-fe/pulls/231
12 lines
317 B
Vue
12 lines
317 B
Vue
<template>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h4>{{ $t('registration.request_sent_title') }}</h4>
|
|
</div>
|
|
<div class="panel-body">
|
|
<p>{{ $t('registration.request_sent') }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./registration_request_sent.js"></script>
|