payment gateway for rpn cn
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12 lignes
598B

  1. {{ define "StartPay" }}
  2. <html><body>
  3. select a form of payment
  4. <form id="payment" name="payment" action="/choosePayment " method="POST">
  5. <input id="rpnp2p" type="radio" name="rpnType" value="rpnp2p" checked /> <label for="rpnp2p"> RPN P2P </label>
  6. <input id="rpnfat" type="radio" name="rpnType" value="rpnfat" /> <label for="rpnfat"> RPN FAT </label>
  7. <input type="hidden" name="id" value="{{ .Id}}" />
  8. <input type="hidden" name="sign" value="{{ .Sign}}" />
  9. <input type="submit" value="submit" />
  10. </form>
  11. </body></html>
  12. {{ end }}