File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
appengine/appidentity/src/main/java/com/example/appengine/appidentity Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,12 @@ public UrlShortenerServlet() {
38
38
public void doGet (HttpServletRequest req , HttpServletResponse resp ) throws IOException {
39
39
PrintWriter w = resp .getWriter ();
40
40
w .println ("<!DOCTYPE html>" );
41
- w .println ("<form method='post'>" );
42
- w .println ("<label for='longUrl'>URL:</label>" );
43
- w .println ("<input id='longUrl' name='longUrl' type='text'>" );
44
- w .println ("<input type='submit' value='Shorten'>" );
41
+ w .println ("<meta charset=\" utf-8\" >" );
42
+ w .println ("<title>Asserting Identity to Google APIs - App Engine App Identity Example</title>" );
43
+ w .println ("<form method=\" post\" >" );
44
+ w .println ("<label for=\" longUrl\" >URL:</label>" );
45
+ w .println ("<input id=\" longUrl\" name=\" longUrl\" type=\" text\" >" );
46
+ w .println ("<input type=\" submit\" value=\" Shorten\" >" );
45
47
w .println ("</form>" );
46
48
}
47
49
You can’t perform that action at this time.
0 commit comments