forma simple de hacer un campo de texto para aceptar números solo con un número máximo de longitud de 13 dígitos y min 10

<input name="phoneNumber"
    oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
    type = "number"
    maxlength = "10"
 />
Abdulhakim Zeinu