DodoApp: Add optional name field to create app form

Change-Id: I03f6efaf9cf787e34c69da1b9a97913c195b2c8c
diff --git a/core/installer/welcome/dodo-app-tmpl/base.html b/core/installer/welcome/dodo-app-tmpl/base.html
index 4e9401b..450ab25 100644
--- a/core/installer/welcome/dodo-app-tmpl/base.html
+++ b/core/installer/welcome/dodo-app-tmpl/base.html
@@ -5,7 +5,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>{{ block "title" . }}{{ end }}</title>
     <link rel="stylesheet" href="/stat/pico.2.0.6.min.css">
-    <link rel="stylesheet" href="/stat/dodo_app.css?v=0.0.8">
+    <link rel="stylesheet" href="/stat/dodo_app.css?v=0.0.9">
 </head>
 <body class="container">
 	<nav aria-label="breadcrumb">
diff --git a/core/installer/welcome/dodo-app-tmpl/index.html b/core/installer/welcome/dodo-app-tmpl/index.html
index 865f0cf..67b20f6 100644
--- a/core/installer/welcome/dodo-app-tmpl/index.html
+++ b/core/installer/welcome/dodo-app-tmpl/index.html
@@ -4,6 +4,7 @@
 {{- define "content" -}}
 <form id="create-app" action="" method="POST">
 	<fieldset class="grid">
+		<input type="text" name="name" placeholder="name (optional)" />
 		<select name="network">
 			{{- range .Networks -}}
 			<option value="{{ .Name }}">{{ .Name }} - {{ .Domain }}</option>