mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-16 08:23:04 +01: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>
|