\documentclass{article}
%%%%%%% PACKAGES %%%%%%%%
\usepackage[utf8]{inputenc}
\usepackage[margin=2cm]{geometry}
\usepackage{blindtext}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{notoccite} %citation number ordering
\usepackage{lscape} %landscape table
\usepackage{caption} %add a newline in the table caption
\usepackage[
backend=biber, %references format (IEEE)
style=ieee,
sorting=none
]{biblatex}
\addbibresource{refs.bib} %rename this to your own bibliography
\onehalfspace % 1.5 line spacing
\title{\huge{\textbf{Progress Report - Ph.D}} \\
\LARGE{My report/thesis title here}}
\author{Joe Bloggs}
\date{June 2019}
\begin{document}
\pagenumbering{roman} % Start roman numbering
\clearpage\maketitle
\thispagestyle{empty}
\begin{center}
\begin{figure}[h]
\centering
\includegraphics[width=10cm]{pics/uu_logo.png}
%\caption{Your caption here}
\label{fig:logo}
\end{figure}
\large{School of Engineering \\
Supervisor: Prof John Smith}
\end{center}
\newpage
\setcounter{page}{1}
\tableofcontents
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic} % Start roman numbering
%%% CONTENT HERE %%%%
\section{Introduction}
The quick brown fox jumps over the lazy dog.
\subsection{Subsection}
Why is report writing so difficult?
\end{document}
\newpage
\setstretch{1} %reduce bibliography line spacing
\printbibliography
\end{document}