New Page Box

NewPageBox opens new page in edit mode
If page exists it will jump to target page. Will load template page.
(:fox box1 #top redirect=1 template=Site.NewPageTemplate:)
(:input text newedit value="Test" size=20:)(:input submit post "New Page":)
(:foxend box1:)

(:fox box1 #top redirect=1 template=Site.NewPageTemplate:) (:foxend box1:)

NewPageBox saves new page with template string inserted
If page exists it will append template string to existing target page.
(:fox box2 #top redirect=1 newedit=1:)
(:input text target value="Test" size=20:)(:input submit post "New Page":)
(:foxtemplate "'''New Page'''":)
(:foxend box2:)

(:fox box2 #top redirect=1 newedit=1:) (:foxtemplate "New Page":) (:foxend box2:)

NewPageBox saves new page using template, combining target name from 2 boxes
If page exists it will append template string to existing target page.
(:fox box3 #top redirect=1 template=Site.NewPageTemplate:)
(:input text tag1 "Test-":) (:input text tag2 "{$Author}" :)
(:input hidden target value={$$tag1}-{$$tag2} :)(:input submit post "New Page":)
(:foxtemplate "'''New Page'''":)
(:foxend box3:)

(:fox box3 #top redirect=1 template=Site.NewPageTemplate:) (:foxtemplate "New Page":) (:foxend box3:)