var minisrv_service_file = true;
headers = `200 OK
Connection: Keep-Alive
Content-Type: text/html`
var styleName = request_headers.query.styleName
var page = request_headers.query.pageNum
var docName = request_headers.query.docName
if (styleName) {
switch(page) {
case "1":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "2":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "3":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "4":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "5":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
`
break;
default:
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
Your current style is: ${styleName}
|
|
|
|
|
|
|
|
|
|
|
`;
break;
}
} else {
switch(page) {
case "1":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "2":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "3":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "4":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
|
|
|
|
`
break;
case "5":
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
`
break;
default:
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
|
|
You can change the style at any time without losing your text or images.
|
|
|
|
|
|
|
|
|
|
|
|
|
`
break;
}
}