[Tex/LaTex] Two authors on the same line on the titlepage

titles

How can I put two authors in the titlepage? I tried this but it didnt work (nothing showed up after the title):

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage{abraces}
\usepackage{stackengine}
\renewcommand\useanchorwidth{T}
\stackMath
\usepackage{amsmath}
%\usepackage{mathtools}
\usepackage{listings}
\usepackage{graphicx} 

\begin{titlepage}
    \begin{center}
    space \\
    [10cm]
    \huge{Some title in swedish here}\\
    [1cm]   
    \author{
  Name Surname\\
  \texttt{emailh@outlook.com}
  \and
  Name Surname\\
  \texttt{first2.last2@xxxxx.com}
}
\date{} 


    \end{center}

\end{titlepage}

\end{document}

EDIT 2:

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage{abraces}
\usepackage{stackengine}
\renewcommand\useanchorwidth{T}
\stackMath
\usepackage{amsmath}
%\usepackage{mathtools}
\usepackage{listings}
\usepackage{graphicx} 



\title{\huge Titel \\[1cm]}
\author{&
  Name Surname\\
  \texttt{emailh@outlook.com}
  \and
  Name Surname\\
  \texttt{first2.last2@xxxxx.com}
}
\date{} 



\begin{document}
%{\setlength{\parindent}{0cm}
%\maketitle 

\tableofcontents
\cleardoublepage




\section*{Table of contents}

\section{Section}
\section{Section}
\section{Section}
\section{Section}
\section{Section}
\end{document}

Best Answer

Do you mean this?

The titlepage option enables the \begin{titlepage}...\end{titlepage} environment for the \maketitle command and has a bigger top space (before the title.)

\documentclass[11pt,titlepage]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage{abraces}
\usepackage{stackengine}
\renewcommand\useanchorwidth{T}
\stackMath
\usepackage{amsmath}
%\usepackage{mathtools}
\usepackage{listings}
\usepackage{graphicx} 

\title{\huge Some title in swedish here \\[1cm]}
\author{%
  Name Surname\\
  \texttt{emailh@outlook.com}
  \and
  Name Surname\\
  \texttt{first2.last2@xxxxx.com}
}
\date{} 


\begin{document}
\maketitle

\end{document}

enter image description here

Edit

\documentclass[11pt,titlepage]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage{abraces}
\usepackage{stackengine}
\renewcommand\useanchorwidth{T}
\stackMath
\usepackage{amsmath}
%\usepackage{mathtools}
\usepackage{listings}
\usepackage{graphicx} 



\title{\huge Titel \\[1cm]}
\author{%  ---> & wrong here!!!
  Name Surname\\
  \texttt{emailh@outlook.com}
  \and
  Name Surname\\
  \texttt{first2.last2@xxxxx.com}
}
\date{} 



\begin{document}
%{\setlength{\parindent}{0cm}
\maketitle 

\tableofcontents
\cleardoublepage




\section*{Table of contents}

\section{Section}
\section{Section}
\section{Section}
\section{Section}
\section{Section}
\end{document}