a GUI for prismedia, using Electron.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
549 B

  1. <template>
  2. <section class="container">
  3. <div>
  4. <h2>Your friendly uploader to PeerTube and other platforms.</h2>
  5. login on your instance or <a href="https://instances.joinpeertube.org/" target="_blank" class="btn btn-primary">register on one first</a>.
  6. </div>
  7. </section>
  8. </template>
  9. <script>
  10. export default {
  11. }
  12. </script>
  13. <style scoped>
  14. :root {
  15. color: white;
  16. }
  17. a {
  18. color: orange;
  19. }
  20. .container {
  21. min-height: 100vh;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. text-align: center;
  26. }
  27. .btn {
  28. margin: 0 8px;
  29. }
  30. </style>