21 lines
748 B
Batchfile
21 lines
748 B
Batchfile
@echo off
|
|
title Render HTML from PHP
|
|
|
|
del /s /q .\html\*
|
|
del /s /q .\static\style.css
|
|
del /s /q .\static\verify.js
|
|
del /s /q .\static\register.js
|
|
del /s /q .\templates\*
|
|
|
|
curl -o ./html/home.html http://localhost:8080/home.php
|
|
curl -o ./html/register.html http://localhost:8080/register.php
|
|
curl -o ./html/verify.html http://localhost:8080/verify.php
|
|
curl -o ./html/genqr.html http://localhost:8080/genqr.php
|
|
|
|
curl -o ./templates/base.html.tmpl http://localhost:8080/generic.php
|
|
curl -o ./templates/info.html.tmpl http://localhost:8080/info.php
|
|
|
|
curl -o ./static/verify.js http://localhost:8080/static/verify.js
|
|
curl -o ./static/register.js http://localhost:8080/static/register.js
|
|
curl -o ./static/style.css http://localhost:8080/static/style.css
|