home.blade.php 1.0 KB

123456789101112131415161718192021222324252627
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Import</h3>
  5. </div>
  6. <hr>
  7. <section>
  8. <p class="lead">Account Import allows you to import your data from a supported service. <a href="#">Learn more.</a></p>
  9. <p class="alert alert-warning"><strong>Warning: </strong> Imported posts will not appear on timelines or be delivered to followers.</p>
  10. </section>
  11. <section class="mt-4">
  12. <p class="small text-muted font-weight-bold text-uppercase mb-3">Supported Services</p>
  13. <p class="">
  14. <a class="btn btn-outline-primary font-weight-bold" href="{{route('settings.import.ig')}}">Import from Instagram</a>
  15. </p>
  16. <hr>
  17. <p class="small text-muted font-weight-bold text-uppercase mb-3">Coming Soon</p>
  18. <p class="">
  19. <a class="btn btn-outline-secondary font-weight-bold disabled" href="#">Import from Pixelfed</a>
  20. </p>
  21. <p class="">
  22. <a class="btn btn-outline-secondary font-weight-bold disabled" href="#">Import from Mastodon</a>
  23. </p>
  24. </section>
  25. @endsection