├── README.md ├── admin └── lang │ └── chinese.php ├── lang ├── chinese.php └── hk.php ├── modules ├── gateways │ ├── alipay.php │ ├── callback │ │ ├── alipay_callback.php │ │ └── alipay_return.htm │ ├── lib │ │ ├── Thumbs.db │ │ ├── alipay.gif │ │ └── alipay_service.class.php │ └── tenpay.zip └── servers │ ├── ipmi │ └── ipmi.php │ └── vultr │ ├── clientarea.tpl │ ├── img │ ├── poweroff.png │ ├── poweron.png │ ├── reboot.png │ ├── reinstall.png │ ├── shutdown.png │ └── vnc.png │ ├── readme.txt │ └── vultr.php └── templates └── logdns ├── 3dsecure.tpl ├── affiliates.tpl ├── affiliatessignup.tpl ├── announcements.tpl ├── banned.tpl ├── bulkdomainchecker.tpl ├── bulkdomainmanagement.tpl ├── bulkdomaintransfer.tpl ├── clientareaaddcontact.tpl ├── clientareaaddfunds.tpl ├── clientareacancelrequest.tpl ├── clientareachangepw.tpl ├── clientareacontacts.tpl ├── clientareacreditcard.tpl ├── clientareadetails.tpl ├── clientareadetailslinks.tpl ├── clientareadomainaddons.tpl ├── clientareadomaincontactinfo.tpl ├── clientareadomaindetails.tpl ├── clientareadomaindns.tpl ├── clientareadomainemailforwarding.tpl ├── clientareadomaingetepp.tpl ├── clientareadomainregisterns.tpl ├── clientareadomains.tpl ├── clientareaemails.tpl ├── clientareahome.tpl ├── clientareainvoices.tpl ├── clientareaproductdetails.tpl ├── clientareaproducts.tpl ├── clientareaquotes.tpl ├── clientarearecordslimit.tpl ├── clientareasecurity.tpl ├── clientregister.tpl ├── configuressl-complete.tpl ├── configuressl-stepone.tpl ├── configuressl-steptwo.tpl ├── contact.tpl ├── contactaccessdenied.tpl ├── creditcard.tpl ├── css ├── bootstrap.css └── whmcs.css ├── domainchecker.tpl ├── downloaddenied.tpl ├── downloads.tpl ├── downloadscat.tpl ├── footer.tpl ├── forwardpage.tpl ├── header.tpl ├── homepage.tpl ├── img ├── Thumbs.db └── logo.png ├── invoicepdf.tpl ├── js └── whmcs.js ├── knowledgebase.tpl ├── knowledgebasearticle.tpl ├── knowledgebasecat.tpl ├── login.tpl ├── logintwofa.tpl ├── logout.tpl ├── masspay.tpl ├── pageheader.tpl ├── pwreset.tpl ├── pwresetvalidation.tpl ├── pwstrength.tpl ├── quotepdf.tpl ├── serverstatus.tpl ├── subheader.tpl ├── supportticketslist.tpl ├── supportticketsubmit-confirm.tpl ├── supportticketsubmit-kbsuggestions.tpl ├── supportticketsubmit-stepone.tpl ├── supportticketsubmit-steptwo.tpl ├── ticketfeedback.tpl ├── twitterfeed.tpl ├── unsubscribe.tpl ├── upgrade.tpl ├── upgradesummary.tpl ├── viewannouncement.tpl ├── viewemail.tpl ├── viewinvoice.tpl ├── viewquote.tpl ├── viewticket.tpl └── whois.tpl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/README.md -------------------------------------------------------------------------------- /admin/lang/chinese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/admin/lang/chinese.php -------------------------------------------------------------------------------- /lang/chinese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/lang/chinese.php -------------------------------------------------------------------------------- /lang/hk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/lang/hk.php -------------------------------------------------------------------------------- /modules/gateways/alipay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/alipay.php -------------------------------------------------------------------------------- /modules/gateways/callback/alipay_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/callback/alipay_callback.php -------------------------------------------------------------------------------- /modules/gateways/callback/alipay_return.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/callback/alipay_return.htm -------------------------------------------------------------------------------- /modules/gateways/lib/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/lib/Thumbs.db -------------------------------------------------------------------------------- /modules/gateways/lib/alipay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/lib/alipay.gif -------------------------------------------------------------------------------- /modules/gateways/lib/alipay_service.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/lib/alipay_service.class.php -------------------------------------------------------------------------------- /modules/gateways/tenpay.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/gateways/tenpay.zip -------------------------------------------------------------------------------- /modules/servers/ipmi/ipmi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/ipmi/ipmi.php -------------------------------------------------------------------------------- /modules/servers/vultr/clientarea.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/clientarea.tpl -------------------------------------------------------------------------------- /modules/servers/vultr/img/poweroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/poweroff.png -------------------------------------------------------------------------------- /modules/servers/vultr/img/poweron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/poweron.png -------------------------------------------------------------------------------- /modules/servers/vultr/img/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/reboot.png -------------------------------------------------------------------------------- /modules/servers/vultr/img/reinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/reinstall.png -------------------------------------------------------------------------------- /modules/servers/vultr/img/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/shutdown.png -------------------------------------------------------------------------------- /modules/servers/vultr/img/vnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/img/vnc.png -------------------------------------------------------------------------------- /modules/servers/vultr/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/readme.txt -------------------------------------------------------------------------------- /modules/servers/vultr/vultr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/modules/servers/vultr/vultr.php -------------------------------------------------------------------------------- /templates/logdns/3dsecure.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/3dsecure.tpl -------------------------------------------------------------------------------- /templates/logdns/affiliates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/affiliates.tpl -------------------------------------------------------------------------------- /templates/logdns/affiliatessignup.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/affiliatessignup.tpl -------------------------------------------------------------------------------- /templates/logdns/announcements.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/announcements.tpl -------------------------------------------------------------------------------- /templates/logdns/banned.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/banned.tpl -------------------------------------------------------------------------------- /templates/logdns/bulkdomainchecker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/bulkdomainchecker.tpl -------------------------------------------------------------------------------- /templates/logdns/bulkdomainmanagement.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/bulkdomainmanagement.tpl -------------------------------------------------------------------------------- /templates/logdns/bulkdomaintransfer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/bulkdomaintransfer.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaaddcontact.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaaddcontact.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaaddfunds.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaaddfunds.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareacancelrequest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareacancelrequest.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareachangepw.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareachangepw.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareacontacts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareacontacts.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareacreditcard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareacreditcard.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadetails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadetails.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadetailslinks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadetailslinks.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomainaddons.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomainaddons.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomaincontactinfo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomaincontactinfo.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomaindetails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomaindetails.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomaindns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomaindns.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomainemailforwarding.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomainemailforwarding.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomaingetepp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomaingetepp.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomainregisterns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomainregisterns.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareadomains.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareadomains.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaemails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaemails.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareahome.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareahome.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareainvoices.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareainvoices.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaproductdetails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaproductdetails.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaproducts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaproducts.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareaquotes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareaquotes.tpl -------------------------------------------------------------------------------- /templates/logdns/clientarearecordslimit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientarearecordslimit.tpl -------------------------------------------------------------------------------- /templates/logdns/clientareasecurity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientareasecurity.tpl -------------------------------------------------------------------------------- /templates/logdns/clientregister.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/clientregister.tpl -------------------------------------------------------------------------------- /templates/logdns/configuressl-complete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/configuressl-complete.tpl -------------------------------------------------------------------------------- /templates/logdns/configuressl-stepone.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/configuressl-stepone.tpl -------------------------------------------------------------------------------- /templates/logdns/configuressl-steptwo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/configuressl-steptwo.tpl -------------------------------------------------------------------------------- /templates/logdns/contact.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/contact.tpl -------------------------------------------------------------------------------- /templates/logdns/contactaccessdenied.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/contactaccessdenied.tpl -------------------------------------------------------------------------------- /templates/logdns/creditcard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/creditcard.tpl -------------------------------------------------------------------------------- /templates/logdns/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/css/bootstrap.css -------------------------------------------------------------------------------- /templates/logdns/css/whmcs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/css/whmcs.css -------------------------------------------------------------------------------- /templates/logdns/domainchecker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/domainchecker.tpl -------------------------------------------------------------------------------- /templates/logdns/downloaddenied.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/downloaddenied.tpl -------------------------------------------------------------------------------- /templates/logdns/downloads.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/downloads.tpl -------------------------------------------------------------------------------- /templates/logdns/downloadscat.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/downloadscat.tpl -------------------------------------------------------------------------------- /templates/logdns/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/footer.tpl -------------------------------------------------------------------------------- /templates/logdns/forwardpage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/forwardpage.tpl -------------------------------------------------------------------------------- /templates/logdns/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/header.tpl -------------------------------------------------------------------------------- /templates/logdns/homepage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/homepage.tpl -------------------------------------------------------------------------------- /templates/logdns/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/img/Thumbs.db -------------------------------------------------------------------------------- /templates/logdns/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/img/logo.png -------------------------------------------------------------------------------- /templates/logdns/invoicepdf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/invoicepdf.tpl -------------------------------------------------------------------------------- /templates/logdns/js/whmcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/js/whmcs.js -------------------------------------------------------------------------------- /templates/logdns/knowledgebase.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/knowledgebase.tpl -------------------------------------------------------------------------------- /templates/logdns/knowledgebasearticle.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/knowledgebasearticle.tpl -------------------------------------------------------------------------------- /templates/logdns/knowledgebasecat.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/knowledgebasecat.tpl -------------------------------------------------------------------------------- /templates/logdns/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/login.tpl -------------------------------------------------------------------------------- /templates/logdns/logintwofa.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/logintwofa.tpl -------------------------------------------------------------------------------- /templates/logdns/logout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/logout.tpl -------------------------------------------------------------------------------- /templates/logdns/masspay.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/masspay.tpl -------------------------------------------------------------------------------- /templates/logdns/pageheader.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/pageheader.tpl -------------------------------------------------------------------------------- /templates/logdns/pwreset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/pwreset.tpl -------------------------------------------------------------------------------- /templates/logdns/pwresetvalidation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/pwresetvalidation.tpl -------------------------------------------------------------------------------- /templates/logdns/pwstrength.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/pwstrength.tpl -------------------------------------------------------------------------------- /templates/logdns/quotepdf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/quotepdf.tpl -------------------------------------------------------------------------------- /templates/logdns/serverstatus.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/serverstatus.tpl -------------------------------------------------------------------------------- /templates/logdns/subheader.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/subheader.tpl -------------------------------------------------------------------------------- /templates/logdns/supportticketslist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/supportticketslist.tpl -------------------------------------------------------------------------------- /templates/logdns/supportticketsubmit-confirm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/supportticketsubmit-confirm.tpl -------------------------------------------------------------------------------- /templates/logdns/supportticketsubmit-kbsuggestions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/supportticketsubmit-kbsuggestions.tpl -------------------------------------------------------------------------------- /templates/logdns/supportticketsubmit-stepone.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/supportticketsubmit-stepone.tpl -------------------------------------------------------------------------------- /templates/logdns/supportticketsubmit-steptwo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/supportticketsubmit-steptwo.tpl -------------------------------------------------------------------------------- /templates/logdns/ticketfeedback.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/ticketfeedback.tpl -------------------------------------------------------------------------------- /templates/logdns/twitterfeed.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/twitterfeed.tpl -------------------------------------------------------------------------------- /templates/logdns/unsubscribe.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/unsubscribe.tpl -------------------------------------------------------------------------------- /templates/logdns/upgrade.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/upgrade.tpl -------------------------------------------------------------------------------- /templates/logdns/upgradesummary.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/upgradesummary.tpl -------------------------------------------------------------------------------- /templates/logdns/viewannouncement.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/viewannouncement.tpl -------------------------------------------------------------------------------- /templates/logdns/viewemail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/viewemail.tpl -------------------------------------------------------------------------------- /templates/logdns/viewinvoice.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/viewinvoice.tpl -------------------------------------------------------------------------------- /templates/logdns/viewquote.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/viewquote.tpl -------------------------------------------------------------------------------- /templates/logdns/viewticket.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/viewticket.tpl -------------------------------------------------------------------------------- /templates/logdns/whois.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logdns/whmcs/HEAD/templates/logdns/whois.tpl --------------------------------------------------------------------------------