0
|
1 <%
|
|
2 package global.web;
|
|
3
|
|
4 import fschmidt.util.servlet.JtpContext;
|
|
5 import global.HtmlGlobalUtils;
|
|
6
|
|
7 import javax.servlet.ServletException;
|
|
8 import javax.servlet.http.HttpServlet;
|
|
9 import javax.servlet.http.HttpServletRequest;
|
|
10 import javax.servlet.http.HttpServletResponse;
|
|
11 import java.io.IOException;
|
|
12 import java.io.PrintWriter;
|
|
13 import java.util.Calendar;
|
|
14
|
|
15
|
|
16 public final class ContactUs extends HttpServlet {
|
|
17
|
|
18 protected void service(HttpServletRequest request,HttpServletResponse response)
|
|
19 throws ServletException, IOException
|
|
20 {
|
|
21 JtpContext jtpContext = (JtpContext) getServletContext().getAttribute(JtpContext.attrName);
|
|
22 jtpContext.setEtag(request,response);
|
|
23 PrintWriter out = response.getWriter();
|
|
24 %>
|
|
25 <!DOCTYPE html>
|
|
26 <html lang="en">
|
|
27 <head>
|
|
28 <% HtmlGlobalUtils.head(request, response, "Contact Us"); %>
|
|
29 <style>p{max-width:500px;margin:0 auto 3em}</style>
|
|
30 </head>
|
|
31 <body lato>
|
|
32 <% HtmlGlobalUtils.header(request,response); %>
|
|
33 <div content center paddingTop>
|
|
34 <h2 oswald>Nabble Support Forum</h2>
|
|
35 <p>
|
|
36 <a href="<%=HtmlGlobalUtils.nabbleSupportUrl%>">Visit the Support Forum</a><br/>
|
|
37 For help with technical questions related to your Nabble apps, embedding, customizations, NAML language, bugs and other issues.
|
|
38 </p>
|
|
39
|
|
40 <h2 oswald>Report Abuse</h2>
|
|
41 <p>
|
|
42 Communications related to privacy, violation of our <a href="<%=Terms.path(false)%>">Terms of Use</a> or other abuse must be submitted by email to
|
|
43 abuse<span invisible>[please remove </span><span invisible>this part]</span>@nabble.com.
|
|
44 </p>
|
|
45
|
|
46 <h2 oswald>DMCA Policy</h2>
|
|
47 <p>
|
|
48 Copyright owners who believe that a Nabble user has posted infringing content may provide notice in compliance with the requirements
|
|
49 of the Digital Millennium Copyright Act to Weizhen Lin, 1568 Grackle Way, Sunnyvale CA 94087, email
|
|
50 DMCA<span invisible>[please remove </span><span invisible>this part]</span>@nabble.com.
|
|
51 <b>There will be no response to communications that do not involve copyright infringement.</b>
|
|
52 </p>
|
|
53 </div>
|
|
54 <% HtmlGlobalUtils.footer(request,response); %>
|
|
55 </body>
|
|
56 </html>
|
|
57 <%
|
|
58 }
|
|
59 }
|
|
60 %>
|