sponsor.blade.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Sponsor</h3>
  5. <p class="lead">Add crowdfunding links to your profile.</p>
  6. </div>
  7. <hr>
  8. <form method="post" action="{{route('settings.sponsor')}}">
  9. @csrf
  10. <div class="form-group row">
  11. <label for="patreon" class="col-sm-3 col-form-label font-weight-bold text-right">Patreon</label>
  12. <div class="col-sm-9">
  13. <input type="text" class="form-control" id="patreon" name="patreon" placeholder="patreon.com/dansup" value="{{$sponsors['patreon']}}">
  14. <p class="help-text small text-muted font-weight-bold">
  15. Example: patreon.com/dansup
  16. </p>
  17. </div>
  18. </div>
  19. <div class="form-group row">
  20. <label for="liberapay" class="col-sm-3 col-form-label font-weight-bold text-right">Liberapay</label>
  21. <div class="col-sm-9">
  22. <input type="text" class="form-control" id="liberapay" name="liberapay" placeholder="liberapay.com/pixelfed" value="{{$sponsors['liberapay']}}">
  23. <p class="help-text small text-muted font-weight-bold">
  24. Example: liberapay.com/pixelfed
  25. </p>
  26. </div>
  27. </div>
  28. <div class="form-group row">
  29. <label for="opencollective" class="col-sm-3 col-form-label font-weight-bold text-right">OpenCollective</label>
  30. <div class="col-sm-9">
  31. <input type="text" class="form-control" id="opencollective" name="opencollective" placeholder="opencollective.com/pixelfed" value="{{$sponsors['opencollective']}}">
  32. <p class="help-text small text-muted font-weight-bold">
  33. Example: opencollective.com/pixelfed
  34. </p>
  35. </div>
  36. </div>
  37. <hr>
  38. <div class="form-group row">
  39. <div class="col-12 text-right">
  40. <button type="submit" class="btn btn-primary font-weight-bold float-right">Submit</button>
  41. </div>
  42. </div>
  43. </form>
  44. @endsection