c3d2-web/xsl/paypal.xsl

30 lines
1.1 KiB
XML
Raw Normal View History

2015-11-14 02:10:20 +01:00
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rss="http://purl.org/rss/1.0/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:date="http://exslt.org/dates-and-times"
exclude-result-prefixes="xsl rss rdf">
<xsl:output method="html" indent="yes" />
2015-11-14 02:16:31 +01:00
<xsl:template match="paypalbutton">
2015-11-14 02:10:20 +01:00
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="G8P6T5HBWNY5Q"/>
2016-05-03 18:26:30 +02:00
<!-- https://www.paypalobjects.com/de_DE/DE/i/btn/btn_donateCC_LG.gif --><input
2015-11-14 02:10:20 +01:00
type="image"
2016-05-03 18:26:30 +02:00
src="images/paypal-btn-donate-CC_LG.gif"
2015-11-14 02:10:20 +01:00
border="0"
name="submit"
alt="Jetzt einfach, schnell und sicher online bezahlen mit PayPal."/>
2016-05-03 18:26:30 +02:00
<!--img
2015-11-14 02:10:20 +01:00
alt=""
border="0"
src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif"
width="1"
2016-05-03 18:26:30 +02:00
height="1"/-->
2015-11-14 02:10:20 +01:00
</form>
</xsl:template>
</xsl:stylesheet>