blob: 5177f8b4dd59800a6e696ef125942379e11f119f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "HttpServ.h"
#include "Confirm.h"
#include "config.h"
Confirm::Confirm(const String & t, const String & m, const String & U, Action * y, Action * n) :
Action(U), tit(t), msg(m), NYes(y), NNo(n) { }
void Confirm::Do(Variables * v, Handle * h) {
SendHead(h);
(*h) << msg << "<CENTER><TABLE BORDER=0><tr><td>" << endnl <<
"<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NYes ? NYes->GetURL() : "start") << "\">" << endnl <<
"<INPUT TYPE=\"SUBMIT\" VALUE=\" Oui \">" << endnl;
v->Dump(h);
(*h) << "</FORM></td><td>" << endnl <<
"<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NNo ? NNo->GetURL() : "start") << "\">" << endnl <<
"<INPUT TYPE=\"SUBMIT\" VALUE=\" Non \">" << endnl;
v->Dump(h);
(*h) << "</FORM></td></tr></TABLE></CENTER>" << endnl;
SendFoot(h);
Accessed();
}
String Confirm::GetTitle(void) {
return tit;
}
|