diff --git a/haas-spim-benchmark/src/main/java/cz/it4i/fiji/haas_spim_benchmark/ui/NewJobView.fxml b/haas-spim-benchmark/src/main/java/cz/it4i/fiji/haas_spim_benchmark/ui/NewJobView.fxml
new file mode 100644
index 0000000000000000000000000000000000000000..1414697d686982eeb0d314423b947814f072a984
--- /dev/null
+++ b/haas-spim-benchmark/src/main/java/cz/it4i/fiji/haas_spim_benchmark/ui/NewJobView.fxml
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.Button?>
+<?import javafx.scene.control.CheckBox?>
+<?import javafx.scene.control.Label?>
+<?import javafx.scene.control.RadioButton?>
+<?import javafx.scene.control.TextField?>
+<?import javafx.scene.control.TitledPane?>
+<?import javafx.scene.control.ToggleGroup?>
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.layout.BorderPane?>
+<?import javafx.scene.layout.HBox?>
+<?import javafx.scene.layout.VBox?>
+
+
+
+<fx:root maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" type="BorderPane" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1">
+   <center>
+      <VBox BorderPane.alignment="CENTER">
+         <children>
+            <TitledPane animated="false" collapsible="false" text="Input data">
+               <content>
+                  <AnchorPane>
+                     <children>
+                        <VBox>
+                           <children>
+                              <CheckBox mnemonicParsing="false" text="Use own data" />
+                              <TitledPane animated="false" collapsible="false" text="Directory">
+                                <content>
+                                  <AnchorPane minHeight="0.0" minWidth="0.0">
+                                       <children>
+                                          <VBox>
+                                             <children>
+                                                <HBox>
+                                                   <children>
+                                                      <RadioButton maxHeight="1.7976931348623157E308" mnemonicParsing="false" selected="true">
+                                                         <toggleGroup>
+                                                            <ToggleGroup fx:id="Group" />
+                                                         </toggleGroup>
+                                                         <graphic>
+                                                            <Label maxHeight="1.7976931348623157E308" text="Working" />
+                                                         </graphic>
+                                                      </RadioButton>
+                                                   </children>
+                                                </HBox>
+                                                <HBox>
+                                                   <children>
+                                                      <RadioButton mnemonicParsing="false">
+                                                         <graphic>
+                                                            <HBox>
+                                                               <children>
+                                                                  <TextField />
+                                                                  <Button mnemonicParsing="false" text="Select" />
+                                                               </children>
+                                                            </HBox>
+                                                         </graphic>
+                                                      </RadioButton>
+                                                   </children>
+                                                </HBox>
+                                             </children>
+                                          </VBox>
+                                       </children>
+                                    </AnchorPane>
+                                </content>
+                              </TitledPane>
+                           </children>
+                        </VBox>
+                     </children>
+                  </AnchorPane>
+               </content>
+            </TitledPane>
+            <TitledPane animated="false" collapsible="false" text="Output directory">
+               <content>
+                  <AnchorPane minHeight="0.0" minWidth="0.0">
+                     <children>
+                        <VBox>
+                           <children>
+                              <HBox>
+                                 <children>
+                                    <RadioButton maxHeight="1.7976931348623157E308" mnemonicParsing="false" selected="true">
+                                       <toggleGroup>
+                                          <ToggleGroup fx:id="Group1" />
+                                       </toggleGroup>
+                                       <graphic>
+                                          <Label maxHeight="1.7976931348623157E308" text="Working" />
+                                       </graphic>
+                                    </RadioButton>
+                                 </children>
+                              </HBox>
+                              <HBox>
+                                 <children>
+                                    <RadioButton mnemonicParsing="false">
+                                       <graphic>
+                                          <HBox>
+                                             <children>
+                                                <TextField />
+                                                <Button mnemonicParsing="false" text="Select" />
+                                             </children>
+                                          </HBox>
+                                       </graphic>
+                                    </RadioButton>
+                                 </children>
+                              </HBox>
+                           </children>
+                        </VBox>
+                     </children>
+                  </AnchorPane>
+               </content>
+            </TitledPane>
+         </children>
+      </VBox>
+   </center>
+   <bottom>
+      <BorderPane BorderPane.alignment="CENTER">
+         <right>
+            <Button mnemonicParsing="false" text="Start" BorderPane.alignment="CENTER" />
+         </right>
+      </BorderPane>
+   </bottom>
+</fx:root>
\ No newline at end of file