\documentclass{report}
\usepackage{graphicx} % Required for inserting images
\usepackage{hyperref}
\title{Your report name}
\author{Author (or authors)}
\date{Day Month Year}
\begin{document}
% Custom titlepage instead of the default \maketitle for report class.
\begin{titlepage}
    \centering
    \vspace*{1cm}
    % Title and subtitle are enclosed between two rules.
    \rule{\textwidth}{1pt}
    % Title
    \vspace{.7\baselineskip}
    {\huge \textbf{Title}}
    % Subtitle
    \vspace*{.5cm}
    {\LARGE Subtitle}
    
    \rule{\textwidth}{1pt}
    \vspace{1cm}
    % Set this size for the remaining titlepage.
    \large
    % Authors side by side, using two minipages as a trick.
    \begin{minipage}{.5\textwidth}
        \centering
        First Author \\
        Identification Number \textsc{123456} \\
        {\normalsize \url{university@email.com}}
    \end{minipage}%
    \begin{minipage}{.5\textwidth}
        \centering
        Second Author \\
        Identification Number \textsc{654321} \\
        {\normalsize \url{university2@email.com}}
    \end{minipage}
    % More authors can be inserted here with additional minipages.
    \vspace{3cm}
    % Report logo.
    \includegraphics[width=.7\textwidth]{example-image}
    \vfill
    % University and date information at the bottom of the titlepage.
    Departement Name \\
    University Name \\
    Academic Year 20XX-20XX \\
    Day Month Year
\end{titlepage}
% Start your document here...
\end{document}