A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

118 righe
3.5 KiB

  1. {{define "head"}}
  2. <title>{{.SiteName}}</title>
  3. <style type="text/css">
  4. h2 {
  5. font-weight: normal;
  6. }
  7. #pricing.content-container div.form-container #payment-form {
  8. display: block !important;
  9. }
  10. #pricing #signup-form table {
  11. max-width: inherit !important;
  12. width: 100%;
  13. }
  14. #pricing #payment-form table {
  15. margin-top: 0 !important;
  16. max-width: inherit !important;
  17. width: 100%;
  18. }
  19. tr.subscription {
  20. border-spacing: 0;
  21. }
  22. #pricing.content-container tr.subscription button {
  23. margin-top: 0 !important;
  24. margin-bottom: 0 !important;
  25. width: 100%;
  26. }
  27. #pricing tr.subscription td {
  28. padding: 0 0.5em;
  29. }
  30. #pricing table.billing > tbody > tr > td:first-child {
  31. vertical-align: middle !important;
  32. }
  33. .billing-section {
  34. display: none;
  35. }
  36. .billing-section.bill-me {
  37. display: table-row;
  38. }
  39. #btn-create {
  40. color: white !important;
  41. }
  42. #total-price {
  43. padding-left: 0.5em;
  44. }
  45. #alias-site.demo {
  46. color: #999;
  47. }
  48. #alias-site {
  49. text-align: left;
  50. margin: 0.5em 0;
  51. }
  52. </style>
  53. {{end}}
  54. {{define "content"}}
  55. <div id="pricing" class="content-container wide-form">
  56. <div class="row">
  57. <div style="text-align:left">
  58. <h1 style="margin-top:0;max-width:8em;">{{if .Federation}}Start your blog in the fediverse{{else}}Start your minimalist blog{{end}}</h1>
  59. <p><a href="#more">Learn more...</a></p>
  60. </div>
  61. <div>
  62. {{if .Flashes}}<ul class="errors">
  63. {{range .Flashes}}<li class="urgent">{{.}}</li>{{end}}
  64. </ul>{{end}}
  65. <div id="billing">
  66. <form action="/auth/signup" method="POST" id="signup-form">
  67. <dl class="billing">
  68. <label>
  69. <dt>Username</dt>
  70. <dd>
  71. <input type="text" id="alias" name="alias" style="width: 100%; box-sizing: border-box;" tabindex="1" autofocus />
  72. <p id="alias-site" class="demo">@<strong>your-username</strong>@{{.FriendlyHost}}</p>
  73. </dd>
  74. </label>
  75. <label>
  76. <dt>Password</dt>
  77. <dd><input type="password" id="password" name="pass" autocomplete="new-password" placeholder="" tabindex="2" style="width: 100%; box-sizing: border-box;" /></dd>
  78. </label>
  79. <label>
  80. <dt>Email (optional)</dt>
  81. <dd><input type="email" name="email" id="email" style="letter-spacing: 1px; width: 100%; box-sizing: border-box;" placeholder="me@example.com" tabindex="3" /></dd>
  82. </label>
  83. <dt>
  84. <button id="btn-create" type="submit" style="margin-top: 0">Create blog</button>
  85. </dt>
  86. </dl>
  87. </form>
  88. </div>
  89. </div>
  90. </div>
  91. {{if .Federation}}
  92. <a name="more"></a><hr style="margin: 1em auto 3em;" />
  93. {{end}}
  94. </div>
  95. {{ if .Federation }}
  96. <div class="content-container snug">
  97. <h2>Join the Fediverse</h2>
  98. <p>The fediverse is a large network of platforms that all speak a common language. Imagine if you could reply to Instagram posts from Twitter, or interact with your favorite Medium blogs from Facebook &mdash; federated alternatives like <a href="https://pixelfed.org/" target="pixel">PixelFed</a>, <a href="https://joinmastodon.org/" target="masto">Mastodon</a>, and Write Freely enable you to do these types of things.</p>
  99. <div style="text-align:center">
  100. <iframe style="width: 560px; height: 315px; max-width: 100%;" sandbox="allow-same-origin allow-scripts" src="https://video.writeas.org/videos/embed/cc55e615-d204-417c-9575-7b57674cc6f3" frameborder="0" allowfullscreen></iframe>
  101. </div>
  102. <h2>Write More Socially</h2>
  103. <p>Write Freely can communicate with other federated platforms like Mastodon, so people can follow your blogs, bookmark their favorite posts, and boost them to their followers. Sign up above to create a blog and join the fediverse.</p>
  104. </div>
  105. {{ end }}
  106. {{end}}