--- /dev/null
+with AWS.Templates;
+
+package body Face_Generator_Static is
+
+ function Error_Display_Answer return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_display_answer.html");
+ end Error_Display_Answer;
+
+ function Error_Display_Assignment return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_display_assignment.html");
+ end Error_Display_Assignment;
+
+ function Error_UID_Registration return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_uid_registration.html");
+ end Error_UID_Registration;
+
+ function Error_Prepare_Problem return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_prepare_problem.html");
+ end Error_Prepare_Problem;
+
+ function Error_Problem_Category return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_problem_category.html");
+ end Error_Problem_Category;
+
+ function Error_Problem_ID return HTML_Code is
+ use AWS.Templates;
+ begin
+ return Parse(Filename => "templates/static/error_problem_id.html");
+ end Error_Problem_ID;
+
+end Face_Generator_Static;
--- /dev/null
+with Global_Types;
+
+use Global_Types;
+package Face_Generator_Static is
+ function Error_Display_Answer return HTML_Code;
+ function Error_Display_Assignment return HTML_Code;
+ function Error_UID_Registration return HTML_Code;
+ function Error_Prepare_Problem return HTML_Code;
+ function Error_Problem_Category return HTML_Code;
+ function Error_Problem_ID return HTML_Code;
+end Face_Generator_Static;