mirror of
				https://github.com/ventoy/Ventoy.git
				synced 2025-10-31 14:56:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="box box-primary" id="control">
 | ||
|   <div class="box-header">
 | ||
|       <div class="col-sm-8" style="padding-top:8px;">
 | ||
|           <i class="fa fa-paypal">  </i>
 | ||
|           <h1 class="box-title" style="font-weight:bold;" id="id_h1_page_title">捐助</h1>
 | ||
|       </div>        
 | ||
|   </div>
 | ||
|   <legend></legend>
 | ||
|   <div class="box-body">
 | ||
|     
 | ||
|     <div id="id_donation_div_cn">
 | ||
|       <p style="text-align:left;font-size:18px;color:#D01010;font-weight: bold;">
 | ||
|         Ventoy是开源免费的,如果你愿意捐助来支持这个工具以及我的工作,我会非常感激。
 | ||
|       </p>
 | ||
|       <p style="text-align:left;font-size:16px;">
 | ||
|         你可以选择使用支付宝或微信进行捐助。
 | ||
|       </p>
 | ||
|       <div style="display:flex">
 | ||
|         <div style="width:30%; text-align:center"> <img src="/static/img/AliPay.png?v=1" style="width:200px;height:200px;" ></img></div>
 | ||
|         <div style="width:30%; text-align:center"> <img src="/static/img/WeChatPay.png?v=1" style="width:210px;height:210px;" ></img> </div>
 | ||
|       </div>
 | ||
|     </div>
 | ||
| 
 | ||
|     <div id="id_donation_div_en">
 | ||
|       <p style="text-align:left;font-size:18px;color:#D01010;font-weight: bold;">
 | ||
|         It would be much appreciated if you want to make a small donation to support Ventoy!
 | ||
|       </p>
 | ||
|       <p style="text-align:left;font-size:16px;">
 | ||
|         PayPal and Bitcoin are avaliable for donation. You can chose any of them. <br/><br/>
 | ||
|         <span style="font-weight:bold;">PayPal Link  </span><a target="_blank" href="https://www.paypal.me/ventoy">https://www.paypal.me/ventoy</a><br/><br/>
 | ||
|         <span style="font-weight:bold;">PayPal Account  <span style="color:blue; font-weight:bold;"> admin@ventoy.net</span></span><br/><br/>
 | ||
|         <span style="font-weight:bold;">Bitcoin Address </span>  <span style="color:blue; font-weight:bold;"> 19mZDWzZgzkHCi9YX9H3fYCUuCHq3W6wfT  </span><br/>
 | ||
|       </p>
 | ||
|     </div>
 | ||
| 
 | ||
|   </div>
 | ||
| </div>
 | ||
| <script type="text/javascript">
 | ||
|     
 | ||
|   function VtoyPageLanguageChange(newlang) {
 | ||
|     VtoyCommonChangeLanguage(newlang);
 | ||
|     
 | ||
|     $('h1[id=id_h1_page_title]').text(g_vtoy_cur_language.STR_PLUG_DONATION);
 | ||
|     if (newlang === 'en') {
 | ||
|       
 | ||
|       $('#id_donation_div_en').show();
 | ||
|       $('#id_donation_div_cn').hide();
 | ||
|     } else {
 | ||
|       $('#id_donation_div_en').hide();
 | ||
|       $('#id_donation_div_cn').show();
 | ||
|     }
 | ||
|   }
 | ||
| 
 | ||
|   //Main process
 | ||
|   VtoyPageLanguageChange(g_current_language);
 | ||
| 
 | ||
| </script>
 |