pixelfed/resources/views/settings/import/home.blade.php

27 lines
1 KiB
PHP
Raw Normal View History

2018-05-26 22:40:39 +00:00
@extends('settings.template')
@section('section')
<div class="title">
<h3 class="font-weight-bold">Import</h3>
</div>
<hr>
<section>
2020-05-26 02:53:27 +00:00
<p class="lead">Account Import allows you to import your data from a supported service. <a href="#">Learn more.</a></p>
2019-03-17 20:00:11 +00:00
<p class="alert alert-warning"><strong>Warning: </strong> Imported posts will not appear on timelines or be delivered to followers.</p>
2018-05-26 22:40:39 +00:00
</section>
2020-05-26 02:53:27 +00:00
<section class="mt-4">
2018-05-26 22:40:39 +00:00
<p class="small text-muted font-weight-bold text-uppercase mb-3">Supported Services</p>
<p class="">
2018-11-04 04:32:16 +00:00
<a class="btn btn-outline-primary font-weight-bold" href="{{route('settings.import.ig')}}">Import from Instagram</a>
</p>
2018-11-04 04:32:16 +00:00
<hr>
<p class="small text-muted font-weight-bold text-uppercase mb-3">Coming Soon</p>
2018-05-26 22:40:39 +00:00
<p class="">
2020-05-26 02:53:27 +00:00
<a class="btn btn-outline-secondary font-weight-bold disabled" href="#">Import from Pixelfed</a>
2018-05-26 22:40:39 +00:00
</p>
<p class="">
2020-05-26 02:53:27 +00:00
<a class="btn btn-outline-secondary font-weight-bold disabled" href="#">Import from Mastodon</a>
2018-05-26 22:40:39 +00:00
</p>
</section>
@endsection