SatSale

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

donate.html (3729B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4     <title>Donate Bitcoin</title>
      5     <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
      6     <meta name="viewport" content="width=device-width,initial-scale=1.0">
      7 
      8     <script src="{{ url_for('static', filename='jquery-3.6.0.min.js') }}"></script>
      9     <script src="{{ url_for('static', filename='socket.io.min.js') }}"></script>
     10 
     11     <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
     12 
     13     <!-- Primary Meta Tags -->
     14     <meta name="title" content="Donate Bitcoin">
     15     <meta name="description" content="Lightweight Bitcoin payment processor written in easily deployable Python. ">
     16 
     17     <!-- Open Graph / Facebook -->
     18     <meta property="og:type" content="website">
     19     <meta property="og:url" content="https://try.SatSale.com/">
     20     <meta property="og:title" content="Donate Bitcoin">
     21     <meta property="og:description" content="Lightweight Bitcoin payment processor written in easily deployable Python. ">
     22     <meta property="og:image" content="https://user-images.githubusercontent.com/24557779/109666538-60ee4800-7bc3-11eb-8615-2cb1b239cc11.png">
     23 
     24     <!-- Twitter -->
     25     <meta property="twitter:card" content="summary_large_image">
     26     <meta property="twitter:url" content="https://try.SatSale.com/">
     27     <meta property="twitter:title" content="Donate Bitcoin">
     28     <meta property="twitter:description" content="Lightweight Bitcoin payment processor written in easily deployable Python. ">
     29     <meta property="twitter:image" content="https://user-images.githubusercontent.com/24557779/109666538-60ee4800-7bc3-11eb-8615-2cb1b239cc11.png">
     30 
     31 </head>
     32 
     33 
     34 <body>
     35     <div id="paybox">
     36         <div id="row" height="50px">
     37             <div id="left" style="display:inline-block;" height="75px">
     38                 <h1>Donate Bitcoin</h>
     39             </div>
     40             <div id="right">
     41                 <a class="logo" target="_blank"><img width="100px" src="{{ url_for('static', filename='logo.svg') }}"></a>
     42                 <!-- <a id="qrClick" target="_blank"><img class="qr" id="qrImage" style="padding-top:25px;display:none" width="65px" src="https://i.pinimg.com/originals/3a/dd/40/3add4023fa9b435e7da3c09156b88015.png"></a> -->
     43             </div>
     44         </div>
     45 
     46         <div id="paymentForm">
     47             <form id="pay" action='/pay'>
     48                 <div style="display:block;text-align: center;">
     49                     <h2 style="margin:0;">Amount:
     50                     <input class="donate_input" size="4" type="float" name="amount" placeholder="0" required>
     51                     <select class="donate_input" name="currency" required>
     52                         {% for currency_option in params.supported_currencies %}
     53                         <option value="{{currency_option}}"{% if currency_option == params.base_currency %} selected{% endif %}>{{currency_option}}</option>
     54                         {% endfor %}
     55                     </select>
     56                     </h2>
     57                     <br>
     58                     <input class="button button1" style="width:40%" type="submit" value="Donate">
     59                 </div>
     60             </form>
     61             <div id="paybutton"></div>
     62         </div>
     63         <br>
     64         <div id="row">
     65             <div id="left">
     66                 {% if params.node_info %}
     67                 <small><a id="about" href="/node/" target="_blank">Open a Lightning channel with me!</a></small>
     68                 </br>
     69                 {% endif %}
     70             </div>
     71             <div id="right" style="text-align:right;">
     72                 <small style="vertical-align:middle"><a id="about" href="https://github.com/nickfarrow/SatSale" target="_blank">SatSale</a></small>   
     73             </div>
     74         </div>
     75     </div>
     76 </body>
     77 </html>